Sfoglia il codice sorgente

fix: 修复dispatchStatus计算逻辑中的条件判断

liujt 3 mesi fa
parent
commit
0e41326e71
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/views/batchRecord/components/programRulesDialog.vue

+ 1 - 1
src/views/batchRecord/components/programRulesDialog.vue

@@ -674,7 +674,7 @@
     },
     computed: {
       dispatchStatus() {
-        return (this.addForm.autoOrder && (this.type == 'add' || this.type == 'edit' || this.type == 'detail' || this.type == 'dispatch')) || (!this.addForm.autoOrder && this.type == 'dispatch')
+        return (this.addForm.autoOrder && (this.type == 'add' || this.type == 'edit' || this.type == 'detail')) || (!this.addForm.autoOrder && this.type == 'dispatch')
       },
       // 当前用户信息
       loginUser() {