gaoshp
2025-08-12 5591a5a72a17889a88b7bc17f154e4e61c94650c
批量审批
已修改1个文件
17 ■■■■■ 文件已修改
src/views/flow/todolist.vue 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/flow/todolist.vue
@@ -294,6 +294,7 @@
                        },
                        span: 24,
                        disabled: false,
                        display: false,
                        dicData: [
                        ],
@@ -332,6 +333,17 @@
            // }
            
        },
        'reassignForm.approve'(val) {
            if(val === 'Y') {
                this.reassignOption.column[1].disabled = true;
                this.reassignOption.column[1].display = false;
                this.reassignForm.newAssigneeId = '';
            } else {
                this.reassignOption.column[1].display = false;
                this.reassignOption.column[1].disabled = false;
                this.reassignForm.newAssigneeId = '';
            }
        }
    },
    computed: {
        ...mapGetters(['userInfo', 'permission']),
@@ -450,10 +462,13 @@
                    })
                });
            } else {
                this.reassignBox = true;
                if(val === 3) {//批量审批时 显示通过驳回
                    this.reassignOption.column[0].display = true;
                    this.reassignForm.approve = 'Y';
                    this.reassignForm.newAssigneeId = '';
                    this.reassignOption.column[1].disabled = true;
                    this.reassignOption.column[1].display = true;
                } else {
                    this.reassignOption.column[0].display = false;
                }