Selaa lähdekoodia

演示版本提交

pm 8 kuukautta sitten
vanhempi
sitoutus
559fa79ab6

+ 0 - 0
src/views/mes/material/Exception/index.vue → src/views/mes/Exceptions/Exception/index.vue


+ 0 - 0
src/views/mes/material/doorException/index.vue → src/views/mes/Exceptions/doorException/index.vue


+ 0 - 0
src/views/mes/material/Lending/demo2.vue → src/views/mes/analogue/Lending/demo2.vue


+ 0 - 0
src/views/mes/material/Lending/demo3.vue → src/views/mes/analogue/Lending/demo3.vue


+ 0 - 0
src/views/mes/material/Lending/demo4.vue → src/views/mes/analogue/Lending/demo4.vue


+ 0 - 0
src/views/mes/material/Lending/demo5.vue → src/views/mes/analogue/Lending/demo5.vue


+ 0 - 0
src/views/mes/material/Lending/demo6.vue → src/views/mes/analogue/Lending/demo6.vue


+ 0 - 0
src/views/mes/material/Lending/demo7.vue → src/views/mes/analogue/Lending/demo7.vue


+ 0 - 0
src/views/mes/material/Lending/demo8.vue → src/views/mes/analogue/Lending/demo8.vue


+ 3 - 1
src/views/mes/material/inspectionplan/index.vue

@@ -315,7 +315,7 @@
     <el-dialog :visible.sync="openRecord" width="1500px" append-to-body>
       <div slot="title" class="dialog-title">
         <i></i>
-        <span class="title">巡检物资柜检查记录</span>
+        <span class="title">物资柜检查记录</span>
       </div>
       <el-table  v-loading="loading" :data="RecordList">
         <el-table-column label="计划名称" align="center" prop="planName" width="200">
@@ -553,6 +553,8 @@ export default {
         getIsMaterialsCabinets(data).then((response) => {
           console.log(response, 'wgahah')
           if (response.data.records) {
+            this.form.cabinetIds = response.data.records.map((item) => item.cabinetId);
+            console.log(this.form.cabinetIds,'this.form.cabinetIds')
             this.cabinets = response.data.records.map((item) => ({
               value: item.cabinetId,
               label: item.cabinetName

+ 1 - 1
src/views/mes/material/standard/PropertyForm.vue

@@ -358,7 +358,7 @@ export default {
     handleDelete(row) {
       const recordId = row.recordId || this.ids
       this.$modal
-        .confirm('是否确认删除编号为"' + recordId + '"的数据项?')
+        .confirm('是否确认删除所选数据项?')
         .then(function() {
           return deletePropertyValue(recordId)
         })