入职流程完成

This commit is contained in:
2025-03-07 18:09:16 +08:00
parent f78b3dda14
commit 4a1009e02e
25 changed files with 296 additions and 515 deletions

View File

@@ -144,6 +144,7 @@ export default {
getList() {
this.loading = true;
listTodoProcess(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
console.log(response);
if(this.queryParams.description != null){
this.todoList = this.searchList(response.rows, this.queryParams.description);
}else {
@@ -170,7 +171,7 @@ export default {
query: {
taskId: row.taskId,
processed: true,
category:row.category,
category:row.procDefName==="入职流程"?'onboarding':row.category,
}
})
},