Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -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 || []
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user