gaoshp
2025-08-20 9bb39d728710b89d57e76200c91d872e64d4457d
update
已修改1个文件
13 ■■■■■ 文件已修改
src/views/flow/todolist.vue 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/flow/todolist.vue
@@ -365,11 +365,6 @@
        },
    },
    mounted() {
        getAssignee(this.row).then(res => {
            this.assigneeData = res.data.data;
            this.optionApprove.column[1].dicData = this.assigneeData;
            this.reassignOption.column[1].dicData = this.assigneeData;
        })
        //this.setApproveBtn(row)
    },
    methods: {
@@ -643,12 +638,20 @@
            }
        },
        handleAction(row, index) {
             getAssignee({
                taskId: row.taskId,
             }).then(res => {
                this.assigneeData = res.data.data;
                this.optionApprove.column[1].dicData = this.assigneeData;
                this.reassignOption.column[1].dicData = this.assigneeData;
            })
            this.formApprove = {
                comment: '',
                approve: 'Y', // 默认同
            }
            this.approveBox = true;
            this.row = row
            this.setAssignee(row, this.formApprove.approve);
            this.setApproveBtn(row);
            console.log('handleAction', row, index);