Browse Source

Merge remote-tracking branch 'origin/master'

yurk 2 years ago
parent
commit
5ca483c739
1 changed files with 6 additions and 6 deletions
  1. 6 6
      fhKeeper/formulahousekeeper/timesheet/src/views/customer/list.vue

+ 6 - 6
fhKeeper/formulahousekeeper/timesheet/src/views/customer/list.vue

@@ -64,22 +64,22 @@
         <!--新增界面-->
         <el-dialog :title="title" v-if="addFormVisible" :visible.sync="addFormVisible" :close-on-click-modal="false" customClass="customWidth" width="800px">
             <el-form ref="form1" :model="addForm" :rules="rules" label-width="120px">
-                <el-form-item label="$t('ustomernumber')" >
+                <el-form-item :label="$t('ustomernumber')" >
                     <el-input v-model="addForm.customerCode" :max="20" :placeholder="$t('peaseenterthe')" clearable></el-input>
                 </el-form-item>
-                <el-form-item label="$t('customername')" prop="customerName">
+                <el-form-item :label="$t('customername')" prop="customerName">
                     <el-input v-model="addForm.customerName" :max="20" :placeholder="$t('peaseenterthe')" clearable></el-input>
                 </el-form-item>
-                <el-form-item label="$t('contact')" prop="contactName">
+                <el-form-item :label="$t('contact')" prop="contactName">
                     <el-input v-model="addForm.contactName" :max="20" :placeholder="$t('peaseenterthe')" clearable></el-input>
                 </el-form-item>
-                <el-form-item label="$t('contactphonenumber')" prop="contactPhone">
+                <el-form-item :label="$t('contactphonenumber')" prop="contactPhone">
                     <el-input v-model="addForm.contactPhone" :max="20" :placeholder="$t('peaseenterthe')" clearable></el-input>
                 </el-form-item>
-                <el-form-item label="$t('email')" prop="email">
+                <el-form-item :label="$t('email')" prop="email">
                     <el-input v-model="addForm.email" :max="25" :placeholder="$t('peaseenterthe')" clearable></el-input>
                 </el-form-item>
-                <el-form-item label="$t('address')" prop="address">
+                <el-form-item :label="$t('address')" prop="address">
                     <el-input v-model="addForm.address" :max="50"  :placeholder="$t('peaseenterthe')" clearable></el-input>
                 </el-form-item>