bundle-table.data.ts 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. {
  4. title: '序号',
  5. width: 60,
  6. align: 'center',
  7. dataIndex: 'xh',
  8. key: 'xh',
  9. },
  10. {
  11. title: '测点名称',
  12. dataIndex: 'jcdd',
  13. key: 'jcdd',
  14. width: 130,
  15. align: 'center',
  16. },
  17. {
  18. title: '设备名称',
  19. dataIndex: 'sbmc',
  20. key: 'sbmc',
  21. width: 130,
  22. align: 'center',
  23. },
  24. {
  25. title: '设备编号',
  26. dataIndex: 'sbbh',
  27. key: 'sbbh',
  28. width: 130,
  29. align: 'center',
  30. },
  31. {
  32. title: '管路编号',
  33. dataIndex: 'glbh',
  34. key: 'glbh',
  35. width: 130,
  36. align: 'center',
  37. },
  38. {
  39. title: '分析次数',
  40. dataIndex: 'fxcs',
  41. key: 'fxcs',
  42. width: 60,
  43. align: 'center',
  44. },
  45. {
  46. title: 'CO(PPM)',
  47. children: [
  48. {
  49. title: '最大值',
  50. dataIndex: 'co_max',
  51. key: 'co_max',
  52. width: 80,
  53. align: 'center',
  54. },
  55. {
  56. title: '平均值',
  57. dataIndex: 'co_ave',
  58. key: 'co_ave',
  59. width: 80,
  60. align: 'center',
  61. },
  62. ],
  63. },
  64. {
  65. title: 'CO₂(%)',
  66. children: [
  67. {
  68. title: '最大值',
  69. dataIndex: 'co2_max',
  70. key: 'co2_max',
  71. width: 80,
  72. align: 'center',
  73. },
  74. {
  75. title: '平均值',
  76. dataIndex: 'co2_ave',
  77. key: 'co2_ave',
  78. width: 80,
  79. align: 'center',
  80. },
  81. ],
  82. },
  83. {
  84. title: 'O₂(%)',
  85. children: [
  86. {
  87. title: '最小值',
  88. dataIndex: 'o2_min',
  89. key: 'o2_min',
  90. width: 80,
  91. align: 'center',
  92. },
  93. {
  94. title: '平均值',
  95. dataIndex: 'o2_ave',
  96. key: 'o2_ave',
  97. width: 80,
  98. align: 'center',
  99. },
  100. ],
  101. },
  102. {
  103. title: 'CH₄(%)',
  104. children: [
  105. {
  106. title: '最大值',
  107. dataIndex: 'ch4_max',
  108. key: 'ch4_max',
  109. width: 80,
  110. align: 'center',
  111. },
  112. {
  113. title: '平均值',
  114. dataIndex: 'ch4_ave',
  115. key: 'ch4_ave',
  116. width: 80,
  117. align: 'center',
  118. },
  119. ],
  120. },
  121. {
  122. title: 'C₂H₂(PPM)',
  123. children: [
  124. {
  125. title: '最大值',
  126. dataIndex: 'c2h2_max',
  127. key: 'c2h2_max',
  128. width: 80,
  129. align: 'center',
  130. },
  131. {
  132. title: '平均值',
  133. dataIndex: 'c2h2_ave',
  134. key: 'c2h2_ave',
  135. width: 80,
  136. align: 'center',
  137. },
  138. ],
  139. },
  140. {
  141. title: 'C₂H₄(PPM)',
  142. children: [
  143. {
  144. title: '最大值',
  145. dataIndex: 'c2h4_max',
  146. key: 'c2h4_max',
  147. width: 80,
  148. align: 'center',
  149. },
  150. {
  151. title: '平均值',
  152. dataIndex: 'c2h4_ave',
  153. key: 'c2h4_ave',
  154. width: 80,
  155. align: 'center',
  156. },
  157. ],
  158. },
  159. {
  160. title: 'N₂(PPM)',
  161. children: [
  162. {
  163. title: '最大值',
  164. dataIndex: 'n2_max',
  165. key: 'n2_max',
  166. width: 80,
  167. align: 'center',
  168. },
  169. {
  170. title: '平均值',
  171. dataIndex: 'n2_ave',
  172. key: 'n2_ave',
  173. width: 80,
  174. align: 'center',
  175. },
  176. ],
  177. },
  178. {
  179. title: '煤自燃阶段',
  180. dataIndex: 'internalFireWarnLevel',
  181. width: 100,
  182. align: 'center',
  183. },
  184. {
  185. title: '操作',
  186. dataIndex: 'action',
  187. width: 100,
  188. align: 'center',
  189. },
  190. ];