1
0

endEd.data.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns:BasicColumn[]=[
  3. {
  4. title: '序号',
  5. width: 60,
  6. align: 'center',
  7. customRender: ({ index }: { index: number }) => `${index + 1}`
  8. },
  9. {
  10. title: '文件名称',
  11. dataIndex: 'areaName',
  12. key: 'areaName',
  13. align: 'center',
  14. ellipsis: true,
  15. },
  16. {
  17. title: '文件类型',
  18. dataIndex: 'warnLevel_dictText',
  19. key: 'warnLevel_dictText',
  20. align: 'center',
  21. ellipsis: true,
  22. width: 110,
  23. },
  24. {
  25. title: '文件来源',
  26. dataIndex: 'zhType',
  27. key: 'zhType',
  28. align: 'center',
  29. ellipsis: true,
  30. },
  31. {
  32. title: '上传时间',
  33. dataIndex: 'isLk',
  34. key: 'isLk',
  35. align: 'center',
  36. ellipsis: true,
  37. },
  38. {
  39. title: '审批状态',
  40. dataIndex: 'remarks',
  41. key: 'remarks',
  42. align: 'center',
  43. ellipsis: true,
  44. width:110
  45. },
  46. {
  47. title: '当前审批人',
  48. dataIndex: 'suggestMsg',
  49. key: 'suggestMsg',
  50. align: 'center',
  51. ellipsis: true,
  52. width: 110,
  53. },
  54. {
  55. title: '操作',
  56. key: 'action',
  57. width: 400,
  58. slots: { customRender: 'action' },
  59. align: 'center',
  60. },
  61. ]