Browse Source

表明丢失问题

shibei_master
13176889840 4 years ago
parent
commit
49e99f3dca
  1. 21
      src/views/modules/base/resi.vue

21
src/views/modules/base/resi.vue

@ -616,17 +616,18 @@ export default {
}) })
} }
}) })
groupList.forEach(item => {
item.itemList.forEach(async n => {
n.tableName = item.tableName
if (n.optionSourceType === 'remote') {
await this.getOptionsList(n.optionSourceValue).then(res => {
n.options = res
})
}
})
})
} }
groupList.forEach(item => {
item.itemList.forEach(async n => {
n.tableName = item.tableName
if (n.optionSourceType === 'remote' && type !== 'edit') {
await this.getOptionsList(n.optionSourceValue).then(res => {
n.options = res
})
}
})
})
// }
this.formList = itemList this.formList = itemList
this.tabsList = groupList this.tabsList = groupList
} }

Loading…
Cancel
Save