bpm:流程详情的时间轴

This commit is contained in:
YunaiV
2023-01-24 09:20:30 +08:00
parent 2774671a88
commit 0aa72b3200
4 changed files with 167 additions and 242 deletions

View File

@ -275,23 +275,6 @@ export default {
this.tasksLoad = false;
});
},
/** 处理选择流程的按钮操作 **/
handleSelect(row) {
// 设置选择的流程
this.selectProcessInstance = row;
// 流程表单
if (row.formId) {
// 设置对应的表单
this.detailForm = {
...JSON.parse(row.formConf),
fields: decodeFields(row.formFields)
}
} else if (row.formCustomCreatePath) {
this.$router.push({ path: row.formCustomCreatePath});
// 这里暂时无需加载流程图,因为跳出到另外个 Tab
}
},
getDateStar(ms) {
return getDate(ms);
},