ソースを参照

修改申请驳回后无法删除修改问题

lichao 3 年 前
コミット
655f609e8c
1 ファイル変更15 行追加2 行削除
  1. 15 2
      src/views/warehouseBusiness/storageFeeCalculation/index.vue

+ 15 - 2
src/views/warehouseBusiness/storageFeeCalculation/index.vue

@@ -343,7 +343,7 @@
               v-if="
               scope.row.fBillstatus == '录入' ||
               scope.row.fBillstatus == '暂存'  ||
-              scope.row.fBillstatus == '驳回'
+              scope.row.fBillstatus == '审核驳回'
             "
               @click="handleUpdate(scope.row, false)"
               v-hasPermi="['warehouseBusiness:storageFeeCalculation:edit']"
@@ -356,7 +356,7 @@
               v-if="
               scope.row.fBillstatus == '录入' ||
               scope.row.fBillstatus == '暂存'  ||
-              scope.row.fBillstatus == '驳回'
+              scope.row.fBillstatus == '审核驳回'
             "
               @click="handleDelete(scope.row)"
               v-hasPermi="['warehouseBusiness:storageFeeCalculation:remove']"
@@ -585,6 +585,15 @@
           >
           </el-table-column>
           <el-table-column
+            prop="warehouseName"
+            header-align="center"
+            align="center"
+            width="140px"
+            label="仓库"
+            v-if="showWarehouse == '0'"
+          >
+          </el-table-column>
+          <el-table-column
               prop="fMarks"
               header-align="center"
               align="center"
@@ -1134,6 +1143,7 @@ export default {
   },
   data() {
     return {
+      showWarehouse: null,
       tableHeight: '600',
       dialogFull: false,
       drag: false,
@@ -1430,6 +1440,9 @@ export default {
     this.getDicts('data_unitfees').then((response) => {
       this.fFeetunitOptions = response.data
     })
+    this.getConfigKey("agreement.warehouse").then((response) => {
+      this.showWarehouse = response.msg;
+    });
     this.register()
   },
   activated() {