bundle-table.data.ts 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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. ];
  191. export const Hjtcolumns: BasicColumn[] = [
  192. {
  193. title: '序号',
  194. width: 60,
  195. align: 'center',
  196. dataIndex: 'xh',
  197. key: 'xh',
  198. },
  199. {
  200. title: '管路编号',
  201. dataIndex: 'glbh',
  202. key: 'glbh',
  203. width: 130,
  204. align: 'center',
  205. },
  206. {
  207. title: '管路名称',
  208. dataIndex: 'jcdd',
  209. key: 'jcdd',
  210. width: 130,
  211. align: 'center',
  212. },
  213. {
  214. title: 'CO(PPM)',
  215. children: [
  216. {
  217. title: '最大值',
  218. dataIndex: 'co_max',
  219. key: 'co_max',
  220. width: 80,
  221. align: 'center',
  222. },
  223. {
  224. title: '平均值',
  225. dataIndex: 'co_ave',
  226. key: 'co_ave',
  227. width: 80,
  228. align: 'center',
  229. },
  230. ],
  231. },
  232. {
  233. title: 'CO₂(%)',
  234. children: [
  235. {
  236. title: '最大值',
  237. dataIndex: 'co2_max',
  238. key: 'co2_max',
  239. width: 80,
  240. align: 'center',
  241. },
  242. {
  243. title: '平均值',
  244. dataIndex: 'co2_ave',
  245. key: 'co2_ave',
  246. width: 80,
  247. align: 'center',
  248. },
  249. ],
  250. },
  251. {
  252. title: 'O₂(%)',
  253. children: [
  254. {
  255. title: '最小值',
  256. dataIndex: 'o2_min',
  257. key: 'o2_min',
  258. width: 80,
  259. align: 'center',
  260. },
  261. {
  262. title: '平均值',
  263. dataIndex: 'o2_ave',
  264. key: 'o2_ave',
  265. width: 80,
  266. align: 'center',
  267. },
  268. ],
  269. },
  270. {
  271. title: 'CH₄(%)',
  272. children: [
  273. {
  274. title: '最大值',
  275. dataIndex: 'ch4_max',
  276. key: 'ch4_max',
  277. width: 80,
  278. align: 'center',
  279. },
  280. {
  281. title: '平均值',
  282. dataIndex: 'ch4_ave',
  283. key: 'ch4_ave',
  284. width: 80,
  285. align: 'center',
  286. },
  287. ],
  288. },
  289. {
  290. title: 'N₂(PPM)',
  291. children: [
  292. {
  293. title: '最大值',
  294. dataIndex: 'n2_max',
  295. key: 'n2_max',
  296. width: 80,
  297. align: 'center',
  298. },
  299. {
  300. title: '平均值',
  301. dataIndex: 'n2_ave',
  302. key: 'n2_ave',
  303. width: 80,
  304. align: 'center',
  305. },
  306. ],
  307. },
  308. {
  309. title: 'C₂H₂(PPM)',
  310. children: [
  311. {
  312. title: '最大值',
  313. dataIndex: 'c2h2_max',
  314. key: 'c2h2_max',
  315. width: 80,
  316. align: 'center',
  317. },
  318. {
  319. title: '平均值',
  320. dataIndex: 'c2h2_ave',
  321. key: 'c2h2_ave',
  322. width: 80,
  323. align: 'center',
  324. },
  325. ],
  326. },
  327. {
  328. title: 'C₂H₄(PPM)',
  329. children: [
  330. {
  331. title: '最大值',
  332. dataIndex: 'c2h4_max',
  333. key: 'c2h4_max',
  334. width: 80,
  335. align: 'center',
  336. },
  337. {
  338. title: '平均值',
  339. dataIndex: 'c2h4_ave',
  340. key: 'c2h4_ave',
  341. width: 80,
  342. align: 'center',
  343. },
  344. ],
  345. },
  346. {
  347. title: '备注',
  348. children: [
  349. {
  350. title: '采空区米数',
  351. dataIndex: 'remark',
  352. key: 'remark',
  353. width: 80,
  354. align: 'center',
  355. },
  356. ],
  357. },
  358. {
  359. title: '煤自燃阶段',
  360. dataIndex: 'internalFireWarnLevel',
  361. width: 100,
  362. align: 'center',
  363. },
  364. {
  365. title: '操作',
  366. dataIndex: 'action',
  367. width: 100,
  368. align: 'center',
  369. },
  370. ];