增加调试语句
This commit is contained in:
parent
685ee8b281
commit
a3d5f7f961
|
|
@ -137,7 +137,7 @@
|
|||
map[item.name] = item.value;
|
||||
return map;
|
||||
}, {});
|
||||
|
||||
console.log('sourceMapCheck========', sourceMap);
|
||||
// 然后遍历目标数组赋值
|
||||
// 1.状态部分
|
||||
formState.runList.forEach((target) => {
|
||||
|
|
@ -155,12 +155,14 @@
|
|||
// 遍历内层数组
|
||||
target.relayList.forEach((member) => {
|
||||
const source = sourceMap[member.relayKey];
|
||||
console.log(member.relayKey + '========wtf========' + source);
|
||||
if (source) {
|
||||
Object.assign(member, {
|
||||
value: source,
|
||||
checkValue: source,
|
||||
});
|
||||
}
|
||||
console.log(member.relayKey + '========result========' + member.value + ':::' + member.checkValue);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue