yuan
2026-05-10 f471d6ad716dfc243933e4e6c746fe01eed0a3d9
fix: 修正客户列表接口返回数据解构错误
已修改1个文件
6 ■■■■ 文件已修改
src/views/customerService/feedbackRegistration/components/formDia.vue 6 ●●●● 补丁 | 查看 | 原始文档 | 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