[流程发布]createOrModifyList结构变化修改

zzq
Zhufu 2024-06-18 11:08:52 +08:00
parent 3867d86679
commit 909566938f
1 changed files with 9 additions and 7 deletions

View File

@ -428,7 +428,8 @@
} }
// //
if (createOrModifyList.value.length > 0) { if (createOrModifyList.value.length > 0) {
createOrModifyList.value.forEach((item) => { createOrModifyList.value.forEach((childTab) => {
childTab.forEach(item => {
if (!item.componentProps.disabled) { if (!item.componentProps.disabled) {
if (item.type == 'createuser' || item.type == 'modifyuser') { if (item.type == 'createuser' || item.type == 'modifyuser') {
query[item.field] = userName; query[item.field] = userName;
@ -436,6 +437,7 @@
query[item.field] = nowTime.value; query[item.field] = nowTime.value;
} }
} }
})
}); });
} }
return query; return query;