yangys
2025-08-21 8f599ec77e7be9aa461a208333843cb6148f8561
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);
@@ -752,7 +755,7 @@
    }
    .left {
        width: 400px;
        width: 40%;
    }
    .right {