Pārlūkot izejas kodu

Merge remote-tracking branch 'origin/dev' into dev

001295 2 gadi atpakaļ
vecāks
revīzija
0c672be328

+ 4 - 5
src/views/material/basicFile/details.vue

@@ -241,7 +241,7 @@
                     <template slot-scope="scope">
                       {{ m.attribute == 'select' ? scope.row[`${m.prop}Name`] :
                         (m.attribute == 'checkbox' ?
-                          (scope.row[m.prop] == '0' ? '是' : '否')
+                          (scope.row[m.prop] == '0' ? '√' : '')
                           : scope.row[m.prop])
                       }}
                     </template>
@@ -333,7 +333,7 @@
                         <template slot-scope="scope">
                           {{ v.attribute == 'select' ? scope.row[`${v.prop}Name`] :
                             (v.attribute == 'checkbox' ?
-                              (scope.row[v.prop] == '0' ? '是' : '否')
+                              (scope.row[v.prop] == '0' ? '√' : '')
                               : scope.row[v.prop])
                           }}
                         </template>
@@ -349,7 +349,7 @@
                         <template slot-scope="scope">
                           {{ v.attribute == 'select' ? scope.row[`${v.prop}Name`] :
                             (v.attribute == 'checkbox' ?
-                              (scope.row[v.prop] == '0' ? '是' : '否')
+                              (scope.row[v.prop] == '0' ? '√' : '')
                               : scope.row[v.prop])
                           }}
                         </template>
@@ -1777,10 +1777,9 @@ export default {
       } else if (this.MoreDataDialog.target.name == 'materialType') {
 
         // 物料类别
-
         console.log('确认时选择的数据', this.MoreDataDialog.value);
 
-        this.materialType.value = this.materialType.value.map(m => {
+        this.materialType.value = this.materialType.value.map(m => { 
           if ((m.id && m.id != '' && m.id == _this.MoreDataDialog.target.prop['id']) ||
             (m.insertId && m.insertId == _this.MoreDataDialog.target.prop['insertId'])
           ) {

+ 1 - 1
src/views/material/requisition/add.vue

@@ -500,7 +500,7 @@
               </el-form-item>
             </el-col>
             <el-col :span="8">
-              <el-form-item label="原系统物料编码" prop="oriMaterialCode">
+              <el-form-item label="原系统物料编码" prop="oriMaterialCode">
                 <el-input :disabled="disable" v-model="basicForm.oriMaterialCode"></el-input>
               </el-form-item>
             </el-col>