This commit is contained in:
2024-07-12 09:38:07 +08:00
parent 885655f47d
commit 7f7f908bf6
2 changed files with 1 additions and 4 deletions

View File

@ -751,11 +751,8 @@ export default {
}); });
this.itemlist.specialDiseaseNodeList = []; this.itemlist.specialDiseaseNodeList = [];
this.lists.forEach((e) => { this.lists.forEach((e) => {
console.log(e, 'taskNodeType')
e.list.length > 0 e.list.length > 0
? e.list.forEach((el) => { ? e.list.forEach((el) => {
console.log(el, 'taskNodeType')
el.routeNodeDay = e.routeNodeDay; el.routeNodeDay = e.routeNodeDay;
el.routeNodeName = e.routeNodeName; el.routeNodeName = e.routeNodeName;
if (el.phoneDialMethod == 'COMMON' && el.templateId) { if (el.phoneDialMethod == 'COMMON' && el.templateId) {

View File

@ -677,7 +677,7 @@ export default {
list(this.parentDictCode).then((res) => { list(this.parentDictCode).then((res) => {
res.rows.forEach((e) => { res.rows.forEach((e) => {
this.list.forEach((el) => { this.list.forEach((el) => {
el.routeNodeName = e.dictLabel; el.routeNodeName = e.dictValue;
}); });
}); });
}); });