equip.data.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import { BasicColumn } from '/@/components/Table';
  2. import { FormSchema } from '/@/components/Table';
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: '类型名称',
  6. dataIndex: 'itemText',
  7. align: 'left',
  8. width: 120,
  9. },
  10. {
  11. title: '值',
  12. dataIndex: 'itemValue',
  13. width: 100,
  14. },
  15. {
  16. title: '所属系统',
  17. dataIndex: 'description_dictText',
  18. width: 100,
  19. },
  20. {
  21. title: '排序',
  22. dataIndex: 'sortOrder',
  23. width: 100,
  24. },
  25. ];
  26. export const formSchema: FormSchema[] = [
  27. {
  28. label: '',
  29. field: 'id',
  30. component: 'Input',
  31. show: false,
  32. },
  33. {
  34. label: '',
  35. field: 'dictId',
  36. component: 'Input',
  37. show: false,
  38. },
  39. {
  40. label: '名称',
  41. field: 'itemText',
  42. component: 'Input',
  43. },
  44. {
  45. label: '数据值',
  46. field: 'itemValue',
  47. component: 'Input',
  48. },
  49. // {
  50. // label: '描述',
  51. // field: 'description',
  52. // component: 'Input',
  53. // },
  54. {
  55. label: '所属系统',
  56. field: 'description',
  57. component: 'JDictSelectTag',
  58. componentProps: {
  59. dictCode: 'kindtype ',
  60. placeholder: '请选择所属系统',
  61. },
  62. // colProps: { span: 6 },
  63. },
  64. {
  65. label: '排序值',
  66. field: 'sortOrder',
  67. suffix: '值越小越靠前',
  68. component: 'InputNumber',
  69. },
  70. ];