const.ts 605 B

123456789101112131415161718192021222324252627282930313233343536
  1. export const columns = [
  2. {
  3. title: '设备ID',
  4. dataIndex: 'clientId',
  5. key: 'createTime',
  6. align: 'center',
  7. width: 200,
  8. },
  9. {
  10. title: '发生时间',
  11. dataIndex: 'createTime',
  12. key: 'createTime',
  13. align: 'center',
  14. width: 200,
  15. },
  16. {
  17. title: '事件类型',
  18. dataIndex: 'eventType',
  19. key: 'eventType',
  20. align: 'center',
  21. // width: 200,
  22. },
  23. {
  24. title: '事件内容',
  25. dataIndex: 'info',
  26. key: 'info',
  27. align: 'center',
  28. width: 300,
  29. },
  30. {
  31. title: '备注',
  32. key: 'remark',
  33. dataIndex: 'remark',
  34. align: 'center',
  35. },
  36. ]