vue-vben-admin icon indicating copy to clipboard operation
vue-vben-admin copied to clipboard

在edittable中使用apiselect回显时只会显示id不会显示name

Open 33550 opened this issue 10 months ago • 0 comments

{
  dataIndex: 'inCharge',
  title: '负责人',
  editRow: true,
  width: 200,
  resizable: true,
  editComponent: 'ApiSelect',
  editRule: RouleFn,
  editComponentProps: (from) => {
    return {
      api: getInchargeList,
      resultField: 'items',
      selectProps: {
        fieldNames: {
          value: 'id',
          label: 'name'
        },
        showSearch: true,
        placeholder: '请选择',
        optionFilterProp: 'name',
        allowClear: true,
      
      }
    }
  }
},   只有在启动编辑后才会显示name,然后保存过后表格显示选择数据的id并不会显示name,我不确定这是bug还是就是这样的?

33550 avatar Apr 11 '24 08:04 33550