端到端功能 入口功能优化
This commit is contained in:
parent
7c69986b9e
commit
c8cfe2170a
@ -1058,17 +1058,17 @@
|
|||||||
if (item.methodId !== 'process.epc'){
|
if (item.methodId !== 'process.epc'){
|
||||||
flag = true;
|
flag = true;
|
||||||
}
|
}
|
||||||
if (item.methodId === 'process.epc' || item.methodId === 'process.flowchart'){
|
if (item.methodId !== 'process.epc' && item.methodId !== 'process.flowchart'){
|
||||||
subProcessFooterFlag = true;
|
subProcessFooterFlag = true;
|
||||||
}
|
}
|
||||||
let tag = {value: item.id, label: item.name}
|
let tag = {value: item.id, label: item.name}
|
||||||
that.subProcess.tags.push(tag);
|
that.subProcess.tags.push(tag);
|
||||||
});
|
});
|
||||||
if (subProcessFooterFlag) {
|
if (subProcessFooterFlag) {
|
||||||
that.subProcess.footerBtnVisible = true;
|
|
||||||
}else {
|
|
||||||
that.subProcess.footerBtnVisible = false;
|
that.subProcess.footerBtnVisible = false;
|
||||||
that.subProcess.tags = [];
|
that.subProcess.tags = [];
|
||||||
|
}else {
|
||||||
|
that.subProcess.footerBtnVisible = true;
|
||||||
}
|
}
|
||||||
if (flag){
|
if (flag){
|
||||||
that.modelConvertDialog.footerBtnVisible = false;
|
that.modelConvertDialog.footerBtnVisible = false;
|
||||||
|
|||||||
@ -462,8 +462,10 @@
|
|||||||
if (this.defaultTags != null) {
|
if (this.defaultTags != null) {
|
||||||
this.subProcessForm.processTags = [...this.defaultTags];
|
this.subProcessForm.processTags = [...this.defaultTags];
|
||||||
this.defaultTags.forEach(tag => {
|
this.defaultTags.forEach(tag => {
|
||||||
|
this.subProcessForm.processList.push(tag.value);
|
||||||
this.subProcessForm.defaultProcessCheckedKeys.push(tag.value);
|
this.subProcessForm.defaultProcessCheckedKeys.push(tag.value);
|
||||||
});
|
});
|
||||||
|
console.log('this.subProcessForm.processList',this.subProcessForm.processList)
|
||||||
}
|
}
|
||||||
this.initData();
|
this.initData();
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user