Merge remote-tracking branch 'origin/main'

This commit is contained in:
2026-07-07 15:15:08 +08:00
3 changed files with 107 additions and 0 deletions

View File

@@ -295,6 +295,10 @@ export default {
}
},
async loadComment () {
if (!this.flowInstance || !this.flowInstance.instId) {
this.commentList = []
return
}
try {
const res = await listFlowComment({ instId: this.flowInstance.instId })
this.commentList = res.rows
@@ -352,6 +356,10 @@ export default {
}
},
async loadAssignTask () {
if (!this.detail.instId) {
this.assignTasks = []
return
}
try {
const res = await listAssignTask(this.detail.instId)
this.assignTasks = res?.data || []

View File

@@ -427,6 +427,10 @@ export default {
})
},
async loadAssignTask () {
if (!this.seal || !this.seal.instId) {
this.assignTasks = []
return
}
try {
// const res = await getTodoTaskByBiz('seal', this.currentBizId)
console.log(this.seal)