gasReportInspect.data.ts 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columnsType: BasicColumn[] = [
  3. {
  4. title: '序号',
  5. width: 60,
  6. align: 'center',
  7. customRender: ({ index }: { index: number }) => `${index + 1}`
  8. },
  9. {
  10. title: '监测地点',
  11. dataIndex: 'jcdd',
  12. key: 'jcdd',
  13. width:180,
  14. align: 'center',
  15. },
  16. {
  17. title: 'O₂最小值(%)',
  18. dataIndex: 'o2_min',
  19. key: 'o2_min',
  20. align: 'center',
  21. },
  22. {
  23. title: 'O₂平均值(%)',
  24. dataIndex: 'o2_ave',
  25. key: 'o2_ave',
  26. align: 'center',
  27. },
  28. {
  29. title: 'CO最大值(ppm)',
  30. dataIndex: 'co_max',
  31. key: 'co_max',
  32. align: 'center',
  33. },
  34. {
  35. title: 'CO平均值(ppm)',
  36. dataIndex: 'co_ave',
  37. key: 'co_ave',
  38. align: 'center',
  39. },
  40. {
  41. title: 'CO₂最大值(%)',
  42. dataIndex: 'co2_max',
  43. key: 'co2_max',
  44. align: 'center',
  45. },
  46. {
  47. title: 'CO₂平均值(%)',
  48. dataIndex: 'co2_ave',
  49. key: 'co2_ave',
  50. align: 'center',
  51. },
  52. {
  53. title: 'CH₄最大值(%)',
  54. dataIndex: 'ch4_max',
  55. key: 'ch4_max',
  56. align: 'center',
  57. },
  58. {
  59. title: 'CH₄平均值(%)',
  60. dataIndex: 'ch4_ave',
  61. key: 'ch4_ave',
  62. align: 'center',
  63. },
  64. {
  65. title: 'C₂H₄最大值(ppm)',
  66. dataIndex: 'c2h4_max',
  67. key: 'c2h4_max',
  68. align: 'center',
  69. },
  70. {
  71. title: 'C₂H₄平均值(ppm)',
  72. dataIndex: 'c2h4_ave',
  73. key: 'c2h4_ave',
  74. align: 'center',
  75. },
  76. {
  77. title: 'C₂H₂最大值(ppm)',
  78. dataIndex: 'c2h2_max',
  79. key: 'c2h2_max',
  80. align: 'center',
  81. },
  82. {
  83. title: 'C₂H₂平均值(ppm)',
  84. dataIndex: 'c2h2_ave',
  85. key: 'c2h2_ave',
  86. align: 'center',
  87. },
  88. {
  89. title: '分析次数',
  90. dataIndex: 'fxcs',
  91. key: 'fxcs',
  92. align: 'center',
  93. },
  94. ];
  95. //分页参数
  96. export const pagination = {
  97. current: 1, // 当前页码
  98. pageSize: 15, // 每页显示条数
  99. total: 0, // 总条目数,后端返回
  100. // showTotal: (total, range) => `${range[0]}-${range[1]} 条,总共 ${total} 条`, // 分页右下角显示信息
  101. showSizeChanger: true, // 是否可改变每页显示条数
  102. pageSizeOptions: ['10','15', '20','25', '50'], // 可选的每页显示条数
  103. };