fileDetail.data.ts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. {
  4. title: '文件ID',
  5. dataIndex: 'id',
  6. ifShow: false,
  7. align:'center',
  8. },
  9. {
  10. title: '父文件夹ID',
  11. dataIndex: 'parentId',
  12. ifShow: false,
  13. align:'center',
  14. },
  15. {
  16. title: '文件名称',
  17. dataIndex: 'fileName',
  18. align:'center',
  19. width:220,
  20. },
  21. {
  22. title: '文件格式',
  23. dataIndex: 'fileSuffix',
  24. align:'center',
  25. width:80,
  26. },
  27. {
  28. title: '文件类型',
  29. dataIndex: 'fileType_dictText',
  30. width:110,
  31. align:'center',
  32. },
  33. {
  34. title: '文件来源',
  35. dataIndex: 'fileSource',
  36. width:140,
  37. align:'center',
  38. },
  39. // {
  40. // title: '是否需要审批',
  41. // dataIndex: 'isApprove',
  42. // width: 120,
  43. // },
  44. {
  45. title: '上传时间',
  46. dataIndex: 'createTime',
  47. width:140,
  48. align:'center',
  49. },
  50. {
  51. title: '审批状态',
  52. dataIndex: 'bpmStatus_dictText',
  53. width:90,
  54. align:'center',
  55. },
  56. {
  57. title: '创建人',
  58. dataIndex: 'createBy',
  59. width:90,
  60. align:'center',
  61. },
  62. {
  63. title: '审批操作',
  64. dataIndex: 'actionSp',
  65. width: 150,
  66. align: 'center',
  67. slots: { customRender: 'actionSp' },
  68. },
  69. {
  70. title: '文件操作',
  71. dataIndex: 'actionWj',
  72. width: 150,
  73. align: 'center',
  74. slots: { customRender: 'actionWj' },
  75. },
  76. ];