avue select组件的options数据通过请求接口地址并对数据进行格式化处理

        {
            label: "客户名称",
            prop: "clientName",
            type:'select',      
            dicUrl:`${window.consoleURL.baseUrl}clinetinfo/page?size=-1`,
            dicFormatter:(res)=>{     
              return res.data.records
            },
             props: {
              label: 'clientName', 
              value: 'clientId'         
            }
      
        }

1.dicUrl 请求地址
2.dicFormatter 重点就是根据接口数据返回一个数组
3. props 中的 label和value值改成对应的字段名称

你可能感兴趣的:(avue,前端)