端到端功能 入口功能优化

This commit is contained in:
qinoy 2023-07-13 10:58:21 +08:00
parent 7c69986b9e
commit c8cfe2170a
2 changed files with 5 additions and 3 deletions

View File

@ -1058,17 +1058,17 @@
if (item.methodId !== 'process.epc'){
flag = true;
}
if (item.methodId === 'process.epc' || item.methodId === 'process.flowchart'){
if (item.methodId !== 'process.epc' && item.methodId !== 'process.flowchart'){
subProcessFooterFlag = true;
}
let tag = {value: item.id, label: item.name}
that.subProcess.tags.push(tag);
});
if (subProcessFooterFlag) {
that.subProcess.footerBtnVisible = true;
}else {
that.subProcess.footerBtnVisible = false;
that.subProcess.tags = [];
}else {
that.subProcess.footerBtnVisible = true;
}
if (flag){
that.modelConvertDialog.footerBtnVisible = false;

View File

@ -462,8 +462,10 @@
if (this.defaultTags != null) {
this.subProcessForm.processTags = [...this.defaultTags];
this.defaultTags.forEach(tag => {
this.subProcessForm.processList.push(tag.value);
this.subProcessForm.defaultProcessCheckedKeys.push(tag.value);
});
console.log('this.subProcessForm.processList',this.subProcessForm.processList)
}
this.initData();
}