historyLsit.data.ts 813 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { BasicColumn } from '/@/components/Table';
  2. export const historyColumns: BasicColumn[] = [
  3. {
  4. title: '分站名称',
  5. dataIndex: 'stationName',
  6. key: 'stationName',
  7. width: 120,
  8. align: 'center',
  9. },
  10. {
  11. title: '分站id',
  12. dataIndex: 'stationId',
  13. key: 'stationId',
  14. width: 120,
  15. align: 'center',
  16. },
  17. {
  18. title: '供电模式',
  19. dataIndex: 'gdms',
  20. key: 'gdms',
  21. width: 120,
  22. align: 'center',
  23. },
  24. {
  25. title: '电池容量(%)',
  26. dataIndex: 'dcrl',
  27. key: 'dcrl',
  28. width: 120,
  29. align: 'center',
  30. },
  31. {
  32. title: '连接状态',
  33. dataIndex: 'status',
  34. key: 'status',
  35. width: 120,
  36. align: 'center',
  37. },
  38. {
  39. title: '时间',
  40. dataIndex: 'createTime',
  41. key: 'createTime',
  42. width: 120,
  43. align: 'center',
  44. },
  45. ];