BaseShipArchiveAccessories.data.ts 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import {BasicColumn} from '/@/components/Table';
  2. import {FormSchema} from '/@/components/Table';
  3. import { rules} from '/@/utils/helper/validator';
  4. import { render } from '/@/utils/common/renderUtils';
  5. import { getWeekMonthQuarterYear } from '/@/utils';
  6. //列表数据
  7. export const columns: BasicColumn[] = [
  8. {
  9. title: '配件类型(accessory type)',
  10. align:"center",
  11. dataIndex: 'accessoryType',
  12. key: 'accessoryType'
  13. },
  14. {
  15. title: '规格(specifications)',
  16. align:"center",
  17. dataIndex: 'specifications',
  18. key: 'specifications'
  19. },
  20. {
  21. title: '型号(model)',
  22. align:"center",
  23. dataIndex: 'model',
  24. key: 'model'
  25. },
  26. {
  27. title: '序列号(serial number)',
  28. align:"center",
  29. dataIndex: 'serialNumber',
  30. key: 'serialNumber'
  31. },
  32. /* {
  33. title: '备注',
  34. align:"center",
  35. dataIndex: 'notes',
  36. key: 'notes'
  37. },
  38. {
  39. title: '附件',
  40. align:"center",
  41. dataIndex: 'attachs',
  42. key: 'attachs'
  43. }, */
  44. ];
  45. //查询数据
  46. export const searchFormSchema: FormSchema[] = [
  47. ];