Browse Source

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

liujt 3 tháng trước cách đây
mục cha
commit
0e41326e71
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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() {