| src/views/customerService/feedbackRegistration/components/formDia.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/views/customerService/feedbackRegistration/components/formDia.vue
@@ -391,13 +391,13 @@ // 打开弹框 const openDialog =async (type, row) => { // 请求多个接口,获取数据 let res = await getAllCustomerList({ let { data } = await getAllCustomerList({ current: 1, size: 1000, total: 0, }); if(res.records){ customerNameOptions.value = res.records.map(item => ({ if(data){ customerNameOptions.value = data.records.map(item => ({ label: item.customerName, value: item.customerName, id: item.id