tong 4 éve
szülő
commit
67bea4bf6b

+ 1 - 0
src/views/warehouseBusiness/goodsTransfer/index.vue

@@ -1381,6 +1381,7 @@
         :modal="false"
         style="box-shadow: 0 1px 3px rgba(0, 0, 0, 0) !important"
         :visible.sync="whgenlegVisible"
+        :close-on-click-modal="false"
         width="70%"
       >
         <el-table

+ 5 - 0
src/views/warehouseBusiness/inStock/index.vue

@@ -352,6 +352,7 @@
     <el-dialog
       :visible.sync="open"
       :close-on-click-modal="false"
+      @close='addCloseDialog'
       width="80%"
       append-to-body
     >
@@ -2815,6 +2816,10 @@ export default {
   },
 
   methods: {
+    //关闭弹框的事件
+    addCloseDialog(){    
+      this.getList()
+    },
     // 上传成功返回数据
     showFile(row) {
       for (let list in this.relevantAttachments) {

+ 7 - 2
src/views/warehouseBusiness/outStock/index.vue

@@ -261,7 +261,7 @@
         <template slot-scope="scope">
           <span v-if="scope.row.fItemsStatus === 1">计划</span>
           <span v-if="scope.row.fItemsStatus === 2">卸货中</span>
-          <span v-if="scope.row.fItemsStatus === 3">已货</span>
+          <span v-if="scope.row.fItemsStatus === 3">已货</span>
           <span v-if="scope.row.fItemsStatus === 4">已入库</span>
         </template>
       </el-table-column>
@@ -334,6 +334,7 @@
     <el-dialog
       :visible.sync="open"
       :close-on-click-modal="false"
+      @close='addCloseDialog'
       width="80%"
       append-to-body
     >
@@ -1036,7 +1037,7 @@
           <template slot-scope="scope">
             <span v-if="scope.row.fBillstatus === 40">已出库</span>
             <span v-if="scope.row.fBillstatus === 20">卸货中</span>
-            <span v-if="scope.row.fBillstatus === 30">已货</span>
+            <span v-if="scope.row.fBillstatus === 30">已货</span>
             <span v-if="scope.row.fBillstatus === 10">计划</span>
           </template>
         </el-table-column>
@@ -2468,6 +2469,10 @@ export default {
     });
   },
   methods: {
+    //关闭弹框的事件
+    addCloseDialog(){    
+      this.getList()
+    },
     // 上传成功返回数据
     showFile(row) {
       for(let list in this.relevantAttachments) {