completeLc.data.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. },
  23. {
  24. title: '标识Key',
  25. dataIndex: 'zhType',
  26. key: 'zhType',
  27. align: 'center',
  28. ellipsis: true,
  29. },
  30. {
  31. title: '版本',
  32. dataIndex: 'isLk',
  33. key: 'isLk',
  34. align: 'center',
  35. ellipsis: true,
  36. },
  37. {
  38. title: '审批结果',
  39. dataIndex: 'remarks',
  40. key: 'remarks',
  41. align: 'center',
  42. ellipsis: true,
  43. },
  44. {
  45. title: '原因详情',
  46. dataIndex: 'suggestMsg',
  47. key: 'suggestMsg',
  48. align: 'center',
  49. ellipsis: true,
  50. },
  51. {
  52. title: '总耗时',
  53. dataIndex: 'suggestMsg',
  54. key: 'suggestMsg',
  55. align: 'center',
  56. ellipsis: true,
  57. },
  58. {
  59. title: '开始时间',
  60. dataIndex: 'suggestMsg',
  61. key: 'suggestMsg',
  62. align: 'center',
  63. ellipsis: true,
  64. },
  65. {
  66. title: '结束时间',
  67. dataIndex: 'suggestMsg',
  68. key: 'suggestMsg',
  69. align: 'center',
  70. ellipsis: true,
  71. },
  72. {
  73. title: '操作',
  74. key: 'action',
  75. width: 250,
  76. slots: { customRender: 'action' },
  77. align: 'center',
  78. },
  79. ]