table.config.js 843 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-09-18 16:06:51
  4. * @LastEditTime: 2021-09-28 14:04:57
  5. * @LastEditors: Please set LastEditors
  6. * @Description: 表格的配置
  7. * @FilePath: \hyyfClient\src\views\BioSafety\personAdmin\table.config.js
  8. */
  9. export const title = '数据列表'
  10. export const tableItems = [
  11. {
  12. prop: 'place',
  13. label: '位置',
  14. minWidth: '100',
  15. slotName: 'place'
  16. },
  17. {
  18. prop: 'startTime',
  19. label: '开始时间',
  20. minWidth: '150',
  21. slotName: 'startTime'
  22. },
  23. {
  24. prop: 'endTime',
  25. label: '结束时间',
  26. minWidth: '150',
  27. slotName: 'endTime'
  28. },
  29. {
  30. prop: 'long',
  31. label: '耗时',
  32. minWidth: '150',
  33. slotName: 'long'
  34. },
  35. {
  36. label: '操作',
  37. minWidth: '150',
  38. slotName: 'handler'
  39. }
  40. ]
  41. export const tableShows = {
  42. showIndex: false, showSelect: true
  43. }