车间能级提升-智能设备管理系统
baoshiwei
2025-06-26 f29e2aae98bbb52672b67bff99556f3cf64d1bce
eims-ui/apps/web-antd/src/views/eims/fixture/data.tsx
@@ -27,6 +27,14 @@
    label: '工具状态'
  },
  {
    component: 'Select',
    componentProps: {
      options: getDictOptions(DictEnum.FIXTURE_BORROW_STATUS)
    },
    fieldName: 'borrowStatus',
    label: '借用状态'
  },
  {
    component: 'Input',
    fieldName: 'assetNo',
    label: '资产编号'
@@ -82,7 +90,8 @@
    title: '工具(治具)名称',
    field: 'fixtureName',
    minWidth: 140,
    fixed: 'left'
    fixed: 'left',
    slots: { default: 'fixtureName' }
  },
  {
@@ -101,6 +110,21 @@
    fixed: 'left'
  },
  {
    title: '借用状态',
    field: 'borrowStatus',
    sortable: true,
    slots: {
      default: ({ row }) => {
        if (row.borrowStatus === null || row.borrowStatus === '') {
          return '';
        }
        return renderDict(row.borrowStatus, DictEnum.FIXTURE_BORROW_STATUS);
      }
    },
    minWidth: 100,
    fixed: 'left'
  },
  {
    title: '类型',
    field: 'fixtureTypeName',
    minWidth: 100
@@ -112,6 +136,11 @@
    minWidth: 140
  },
  {
    title: '借用人',
    field: 'borrowUserName',
    minWidth: 100
  },
  {
    title: '工具编码',
    field: 'fixtureCode',
    sortable: true,