access.data.ts 930 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import { BasicColumn } from '/@/components/Table/src/types/table';
  2. export const accessStatisticsColumns: BasicColumn[] = [
  3. {
  4. title: '区域',
  5. dataIndex: 'name',
  6. width: 150,
  7. align: 'center',
  8. },
  9. {
  10. title: '煤矿总数',
  11. dataIndex: 'mineNum',
  12. width: 120,
  13. align: 'center',
  14. },
  15. {
  16. title: '应接入数量',
  17. dataIndex: 'yjNum',
  18. width: 120,
  19. align: 'center',
  20. },
  21. {
  22. title: '无需接入数量',
  23. dataIndex: 'wxjrNum',
  24. width: 120,
  25. align: 'center',
  26. },
  27. {
  28. title: '接入数量',
  29. dataIndex: 'jrNum',
  30. width: 120,
  31. align: 'center',
  32. },
  33. {
  34. title: '未接入数量',
  35. dataIndex: 'wjNum',
  36. width: 120,
  37. align: 'center',
  38. },
  39. {
  40. title: '在线数量',
  41. dataIndex: 'zxNum',
  42. width: 120,
  43. align: 'center',
  44. },
  45. // {
  46. // title: '离线数量',
  47. // dataIndex: 'lxNum',
  48. // width: 120,
  49. // align: 'center',
  50. // },
  51. ];