bundleSpy-table.data.ts 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201
  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: 100,
  15. align: 'center',
  16. },
  17. {
  18. title: '取样分析时间',
  19. dataIndex: 'qyfxsj',
  20. key: 'qyfxsj',
  21. width: 100,
  22. align: 'center',
  23. },
  24. {
  25. title: 'O₂(%)',
  26. dataIndex: 'o2_ave',
  27. key: 'o2_ave',
  28. width: 100,
  29. align: 'center',
  30. },
  31. {
  32. title: 'N₂(%)',
  33. dataIndex: 'n2_ave',
  34. key: 'n2_ave',
  35. width: 100,
  36. align: 'center',
  37. },
  38. {
  39. title: 'CO(%)',
  40. dataIndex: 'co_ave',
  41. key: 'co_ave',
  42. width: 100,
  43. align: 'center',
  44. },
  45. {
  46. title: 'CO₂(%)',
  47. dataIndex: 'co2_ave',
  48. key: 'co2_ave',
  49. width: 100,
  50. align: 'center',
  51. },
  52. {
  53. title: 'CH₄(%)',
  54. dataIndex: 'ch4_ave',
  55. key: 'ch4_ave',
  56. width: 100,
  57. align: 'center',
  58. },
  59. {
  60. title: 'C2H6(%)',
  61. dataIndex: 'c2h6_ave',
  62. key: 'c2h6_ave',
  63. width: 100,
  64. align: 'center',
  65. },
  66. {
  67. title: 'C₂H₄(%)',
  68. dataIndex: 'c2h4_ave',
  69. key: 'c2h4_ave',
  70. width: 100,
  71. align: 'center',
  72. },
  73. {
  74. title: 'C₂H₂(%)',
  75. dataIndex: 'c2h2_ave',
  76. key: 'c2h2_ave',
  77. width: 100,
  78. align: 'center',
  79. },
  80. {
  81. title: '总组分含量',
  82. dataIndex: 'zzfhl_ave',
  83. key: 'zzfhl_ave',
  84. width: 100,
  85. align: 'center',
  86. },
  87. {
  88. title: '煤自燃阶段',
  89. dataIndex: 'internalFireWarnLevel',
  90. width: 100,
  91. align: 'center',
  92. },
  93. {
  94. title: '操作',
  95. dataIndex: 'action',
  96. width: 100,
  97. align: 'center',
  98. },
  99. ];
  100. export const Hjtcolumns: BasicColumn[] = [
  101. {
  102. title: '序号',
  103. width: 60,
  104. align: 'center',
  105. dataIndex: 'xh',
  106. key: 'xh',
  107. },
  108. {
  109. title: '采空区名称',
  110. dataIndex: 'ckqmc',
  111. key: 'ckqmc',
  112. width: 100,
  113. align: 'center',
  114. },
  115. {
  116. title: '检查地点',
  117. dataIndex: 'jcdd',
  118. key: 'jcdd',
  119. width: 100,
  120. align: 'center',
  121. },
  122. {
  123. title: '闭内',
  124. children: [
  125. {
  126. title: 'CH₄(%)',
  127. dataIndex: 'ch4_ave',
  128. key: 'ch4_ave',
  129. width: 100,
  130. align: 'center',
  131. },
  132. {
  133. title: 'O₂(%)',
  134. dataIndex: 'o2_ave',
  135. key: 'o2_ave',
  136. width: 100,
  137. align: 'center',
  138. },
  139. {
  140. title: 'CO(%)',
  141. dataIndex: 'co_ave',
  142. key: 'co_ave',
  143. width: 100,
  144. align: 'center',
  145. },
  146. {
  147. title: 'CO₂(%)',
  148. dataIndex: 'co2_ave',
  149. key: 'co2_ave',
  150. width: 100,
  151. align: 'center',
  152. },
  153. {
  154. title: '气温(℃)',
  155. dataIndex: 'qw',
  156. key: 'qw',
  157. width: 100,
  158. align: 'center',
  159. },
  160. {
  161. title: '水温(℃)',
  162. dataIndex: 'sw',
  163. key: 'sw',
  164. width: 100,
  165. align: 'center',
  166. },
  167. {
  168. title: '压差(Pa)',
  169. dataIndex: 'yc',
  170. key: 'yc',
  171. width: 100,
  172. align: 'center',
  173. },
  174. ],
  175. },
  176. {
  177. title: '闭前',
  178. children: [
  179. {
  180. title: 'CH₄(%)',
  181. dataIndex: 'ch4_ave_bq',
  182. key: 'ch4_ave_bq',
  183. width: 100,
  184. align: 'center',
  185. },
  186. {
  187. title: 'O₂(%)',
  188. dataIndex: 'o2_ave_bq',
  189. key: 'o2_ave_bq',
  190. width: 100,
  191. align: 'center',
  192. },
  193. ],
  194. },
  195. {
  196. title: '观测孔风流方向',
  197. dataIndex: 'gckflfx',
  198. key: 'gckflfx',
  199. width: 100,
  200. align: 'center',
  201. },
  202. {
  203. title: '密闭完好情况',
  204. dataIndex: 'mbwhqk',
  205. key: 'mbwhqk',
  206. width: 100,
  207. align: 'center',
  208. },
  209. {
  210. title: '备注',
  211. dataIndex: 'smark',
  212. key: 'smark',
  213. width: 100,
  214. align: 'center',
  215. },
  216. {
  217. title: '煤自燃阶段',
  218. dataIndex: 'internalFireWarnLevel',
  219. width: 100,
  220. align: 'center',
  221. },
  222. {
  223. title: '操作',
  224. dataIndex: 'action',
  225. width: 100,
  226. align: 'center',
  227. },
  228. ];
  229. export const Bdcolumns: BasicColumn[] = [
  230. {
  231. title: '序号',
  232. width: 60,
  233. align: 'center',
  234. dataIndex: 'xh',
  235. key: 'xh',
  236. },
  237. {
  238. title: '采空区名称',
  239. dataIndex: 'ckqmc',
  240. key: 'ckqmc',
  241. width: 100,
  242. align: 'center',
  243. },
  244. {
  245. title: '采样地点',
  246. dataIndex: 'jcdd',
  247. key: 'jcdd',
  248. width: 100,
  249. align: 'center',
  250. },
  251. {
  252. title: '采样时间',
  253. dataIndex: 'cysj',
  254. key: 'cysj',
  255. width: 100,
  256. align: 'center',
  257. },
  258. {
  259. title: '分析时间',
  260. dataIndex: 'fxsj',
  261. key: 'fxsj',
  262. width: 100,
  263. align: 'center',
  264. },
  265. {
  266. title: '气体分析结果表',
  267. children: [
  268. {
  269. title: '氧气(O₂%)',
  270. dataIndex: 'o2_ave',
  271. key: 'o2_ave',
  272. width: 100,
  273. align: 'center',
  274. },
  275. {
  276. title: '氮气(N₂%)',
  277. dataIndex: 'n2_ave',
  278. key: 'n2_ave',
  279. width: 100,
  280. align: 'center',
  281. },
  282. {
  283. title: '一氧化碳(CO%)',
  284. dataIndex: 'co_ave',
  285. key: 'co_ave',
  286. width: 100,
  287. align: 'center',
  288. },
  289. {
  290. title: '二氧化碳(CO₂%)',
  291. dataIndex: 'co2_ave',
  292. key: 'co2_ave',
  293. width: 100,
  294. align: 'center',
  295. },
  296. {
  297. title: '甲烷(CH₄%)',
  298. dataIndex: 'ch4_ave',
  299. key: 'ch4_ave',
  300. width: 100,
  301. align: 'center',
  302. },
  303. {
  304. title: '乙烷(C2H6%)',
  305. dataIndex: 'c2h6_ave',
  306. key: 'c2h6_ave',
  307. width: 100,
  308. align: 'center',
  309. },
  310. {
  311. title: '丙烷(C3H8%)',
  312. dataIndex: 'c3h8_ave',
  313. key: 'c3h8_ave',
  314. width: 100,
  315. align: 'center',
  316. },
  317. {
  318. title: '乙烯(C₂H₄%)',
  319. dataIndex: 'c2h4_ave',
  320. key: 'c2h4_ave',
  321. width: 100,
  322. align: 'center',
  323. },
  324. {
  325. title: '乙炔(C₂H₂%)',
  326. dataIndex: 'c2h2_ave',
  327. key: 'c2h2_ave',
  328. width: 100,
  329. align: 'center',
  330. },
  331. {
  332. title: '合计',
  333. dataIndex: 'zzfhl_ave',
  334. key: 'zzfhl_ave',
  335. width: 100,
  336. align: 'center',
  337. },
  338. ],
  339. },
  340. {
  341. title: '煤自燃阶段',
  342. dataIndex: 'internalFireWarnLevel',
  343. width: 100,
  344. align: 'center',
  345. },
  346. {
  347. title: '进出风状态',
  348. dataIndex: 'jcfzt',
  349. width: 100,
  350. align: 'center',
  351. },
  352. {
  353. title: '操作',
  354. dataIndex: 'action',
  355. width: 100,
  356. align: 'center',
  357. },
  358. ];
  359. export const Bltcolumns: BasicColumn[] = [
  360. {
  361. title: '编号',
  362. width: 60,
  363. align: 'center',
  364. dataIndex: 'xh',
  365. key: 'xh',
  366. },
  367. {
  368. title: '采样区域',
  369. width: 60,
  370. align: 'center',
  371. dataIndex: 'cyqy',
  372. key: 'cyqy',
  373. },
  374. {
  375. title: '采空区',
  376. dataIndex: 'ckq',
  377. key: 'ckq',
  378. width: 100,
  379. align: 'center',
  380. },
  381. {
  382. title: '采样地点',
  383. dataIndex: 'jcdd',
  384. key: 'jcdd',
  385. width: 100,
  386. align: 'center',
  387. },
  388. {
  389. title: '水温(℃)',
  390. dataIndex: 'sw',
  391. key: 'sw',
  392. width: 100,
  393. align: 'center',
  394. },
  395. {
  396. title: '气温(℃)',
  397. dataIndex: 'qw',
  398. key: 'qw',
  399. width: 100,
  400. align: 'center',
  401. },
  402. {
  403. title: '气流状态',
  404. dataIndex: 'qlzt',
  405. key: 'qlzt',
  406. width: 100,
  407. align: 'center',
  408. },
  409. {
  410. title: '压差(Pa)',
  411. dataIndex: 'yc',
  412. key: 'yc',
  413. width: 100,
  414. align: 'center',
  415. },
  416. {
  417. title: '气体分析结果表',
  418. children: [
  419. {
  420. title: '便携仪O₂(%)',
  421. dataIndex: 'o2_bxyy',
  422. key: 'o2_bxyy',
  423. width: 100,
  424. align: 'center',
  425. },
  426. {
  427. title: '色谱仪O₂(%)',
  428. dataIndex: 'o2_ave',
  429. key: 'o2_ave',
  430. width: 100,
  431. align: 'center',
  432. },
  433. {
  434. title: '便携仪CO(CO%)',
  435. dataIndex: 'co_bxy',
  436. key: 'co_bxy',
  437. width: 100,
  438. align: 'center',
  439. },
  440. {
  441. title: '色谱仪CO(%)',
  442. dataIndex: 'co_ave',
  443. key: 'co_ave',
  444. width: 100,
  445. align: 'center',
  446. },
  447. {
  448. title: '二氧化碳(CO₂%)',
  449. dataIndex: 'co2_ave',
  450. key: 'co2_ave',
  451. width: 100,
  452. align: 'center',
  453. },
  454. {
  455. title: 'N₂(%)',
  456. dataIndex: 'n2_ave',
  457. key: 'n2_ave',
  458. width: 100,
  459. align: 'center',
  460. },
  461. {
  462. title: 'CH₄(%)',
  463. dataIndex: 'ch4_ave',
  464. key: 'ch4_ave',
  465. width: 100,
  466. align: 'center',
  467. },
  468. {
  469. title: 'C2H6(%)',
  470. dataIndex: 'c2h6_ave',
  471. key: 'c2h6_ave',
  472. width: 100,
  473. align: 'center',
  474. },
  475. {
  476. title: 'C₂H₄(%)',
  477. dataIndex: 'c2h4_ave',
  478. key: 'c2h4_ave',
  479. width: 100,
  480. align: 'center',
  481. },
  482. {
  483. title: 'C₂H₂(%)',
  484. dataIndex: 'c2h2_ave',
  485. key: 'c2h2_ave',
  486. width: 100,
  487. align: 'center',
  488. },
  489. ],
  490. },
  491. {
  492. title: '采样日期',
  493. dataIndex: 'cyfxsj',
  494. key: 'cyfxsj',
  495. width: 100,
  496. align: 'center',
  497. },
  498. {
  499. title: '采样时间',
  500. dataIndex: 'cyfxsj2',
  501. key: 'cyfxsj2',
  502. width: 100,
  503. align: 'center',
  504. },
  505. {
  506. title: '采样人',
  507. dataIndex: 'cyr',
  508. key: 'cyr',
  509. width: 100,
  510. align: 'center',
  511. },
  512. {
  513. title: '煤自燃阶段',
  514. dataIndex: 'internalFireWarnLevel',
  515. width: 100,
  516. align: 'center',
  517. },
  518. {
  519. title: '进出风状态',
  520. dataIndex: 'jcfzt',
  521. width: 100,
  522. align: 'center',
  523. },
  524. {
  525. title: '操作',
  526. dataIndex: 'action',
  527. width: 100,
  528. align: 'center',
  529. },
  530. ];
  531. export const Sgtcolumns: BasicColumn[] = [
  532. {
  533. title: '序号',
  534. width: 60,
  535. align: 'center',
  536. dataIndex: 'xh',
  537. key: 'xh',
  538. },
  539. {
  540. title: '采样地点',
  541. dataIndex: 'jcdd',
  542. key: 'jcdd',
  543. width: 100,
  544. align: 'center',
  545. },
  546. {
  547. title: '采空区',
  548. dataIndex: 'ckq',
  549. key: 'ckq',
  550. width: 100,
  551. align: 'center',
  552. },
  553. {
  554. title: '采样时间',
  555. dataIndex: 'qyfxsj',
  556. key: 'qyfxsj',
  557. width: 100,
  558. align: 'center',
  559. },
  560. {
  561. title: 'O₂(%)',
  562. dataIndex: 'o2_ave',
  563. key: 'o2_ave',
  564. width: 100,
  565. align: 'center',
  566. },
  567. {
  568. title: 'N₂(%)',
  569. dataIndex: 'n2_ave',
  570. key: 'n2_ave',
  571. width: 100,
  572. align: 'center',
  573. },
  574. {
  575. title: 'CO(%)',
  576. dataIndex: 'co_ave',
  577. key: 'co_ave',
  578. width: 100,
  579. align: 'center',
  580. },
  581. {
  582. title: 'CO₂(%)',
  583. dataIndex: 'co2_ave',
  584. key: 'co2_ave',
  585. width: 100,
  586. align: 'center',
  587. },
  588. {
  589. title: 'CH₄(%)',
  590. dataIndex: 'ch4_ave',
  591. key: 'ch4_ave',
  592. width: 100,
  593. align: 'center',
  594. },
  595. {
  596. title: 'C2H6(%)',
  597. dataIndex: 'c2h6_ave',
  598. key: 'c2h6_ave',
  599. width: 100,
  600. align: 'center',
  601. },
  602. {
  603. title: 'C₂H₄(%)',
  604. dataIndex: 'c2h4_ave',
  605. key: 'c2h4_ave',
  606. width: 100,
  607. align: 'center',
  608. },
  609. {
  610. title: 'C₂H₂(%)',
  611. dataIndex: 'c2h2_ave',
  612. key: 'c2h2_ave',
  613. width: 100,
  614. align: 'center',
  615. },
  616. {
  617. title: '取样人',
  618. dataIndex: 'qyr',
  619. key: 'qyr',
  620. width: 100,
  621. align: 'center',
  622. },
  623. {
  624. title: '备注',
  625. dataIndex: 'smark',
  626. key: 'smark',
  627. width: 100,
  628. align: 'center',
  629. },
  630. {
  631. title: '煤自燃阶段',
  632. dataIndex: 'internalFireWarnLevel',
  633. width: 100,
  634. align: 'center',
  635. },
  636. {
  637. title: '操作',
  638. dataIndex: 'action',
  639. width: 100,
  640. align: 'center',
  641. },
  642. ];
  643. export const Yjlcolumns: BasicColumn[] = [
  644. {
  645. title: '序号',
  646. width: 60,
  647. align: 'center',
  648. dataIndex: 'xh',
  649. key: 'xh',
  650. },
  651. {
  652. title: '采空区名称',
  653. dataIndex: 'ckq',
  654. key: 'ckq',
  655. width: 100,
  656. align: 'center',
  657. },
  658. {
  659. title: '检查地点',
  660. dataIndex: 'jcdd',
  661. key: 'jcdd',
  662. width: 100,
  663. align: 'center',
  664. },
  665. {
  666. title: '气体分析结果表',
  667. children: [
  668. {
  669. title: 'O₂(%)',
  670. dataIndex: 'o2_ave',
  671. key: 'o2_ave',
  672. width: 100,
  673. align: 'center',
  674. },
  675. {
  676. title: 'N₂(%)',
  677. dataIndex: 'n2_ave',
  678. key: 'n2_ave',
  679. width: 100,
  680. align: 'center',
  681. },
  682. {
  683. title: 'CO(ppm)',
  684. dataIndex: 'co_ave',
  685. key: 'co_ave',
  686. width: 100,
  687. align: 'center',
  688. },
  689. {
  690. title: 'CH₄(%)',
  691. dataIndex: 'ch4_ave',
  692. key: 'ch4_ave',
  693. width: 100,
  694. align: 'center',
  695. },
  696. {
  697. title: 'C₂H₂(ppm)',
  698. dataIndex: 'c2h2_ave',
  699. key: 'c2h2_ave',
  700. width: 100,
  701. align: 'center',
  702. },
  703. {
  704. title: 'C₂H₄(ppm)',
  705. dataIndex: 'c2h4_ave',
  706. key: 'c2h4_ave',
  707. width: 100,
  708. align: 'center',
  709. },
  710. {
  711. title: 'C2H6(ppm)',
  712. dataIndex: 'c2h6_ave',
  713. key: 'c2h6_ave',
  714. width: 100,
  715. align: 'center',
  716. },
  717. {
  718. title: 'CO₂(%)',
  719. dataIndex: 'co2_ave',
  720. key: 'co2_ave',
  721. width: 100,
  722. align: 'center',
  723. },
  724. {
  725. title: '合计',
  726. dataIndex: 'zzfhl_ave',
  727. key: 'zzfhl_ave',
  728. width: 100,
  729. align: 'center',
  730. },
  731. ],
  732. },
  733. {
  734. title: '采样日期',
  735. dataIndex: 'cyrq',
  736. key: 'cyrq',
  737. width: 100,
  738. align: 'center',
  739. },
  740. {
  741. title: '采样时间',
  742. dataIndex: 'cysj',
  743. key: 'cysj',
  744. width: 100,
  745. align: 'center',
  746. },
  747. {
  748. title: '采样人',
  749. dataIndex: 'cyr',
  750. key: 'cyr',
  751. width: 100,
  752. align: 'center',
  753. },
  754. {
  755. title: '进出风状态',
  756. dataIndex: 'jcfzt',
  757. key: 'jcfzt',
  758. width: 100,
  759. align: 'center',
  760. },
  761. {
  762. title: '煤自燃阶段',
  763. dataIndex: 'internalFireWarnLevel',
  764. width: 100,
  765. align: 'center',
  766. },
  767. {
  768. title: '操作',
  769. dataIndex: 'action',
  770. width: 100,
  771. align: 'center',
  772. },
  773. ];
  774. export const Cctrkcolumns: BasicColumn[] = [
  775. {
  776. title: '序号',
  777. width: 60,
  778. align: 'center',
  779. dataIndex: 'xh',
  780. key: 'xh',
  781. },
  782. {
  783. title: '采空区名称',
  784. dataIndex: 'ckq',
  785. key: 'ckq',
  786. width: 100,
  787. align: 'center',
  788. },
  789. {
  790. title: '检查地点',
  791. dataIndex: 'jcdd',
  792. key: 'jcdd',
  793. width: 100,
  794. align: 'center',
  795. },
  796. {
  797. title: '密闭编号',
  798. dataIndex: 'mbbh',
  799. key: 'mbbh',
  800. width: 100,
  801. align: 'center',
  802. },
  803. {
  804. title: '闭内',
  805. children: [
  806. {
  807. title: 'CH₄(%)',
  808. dataIndex: 'ch4_ave',
  809. key: 'ch4_ave',
  810. width: 100,
  811. align: 'center',
  812. },
  813. {
  814. title: 'O₂(%)',
  815. dataIndex: 'o2_ave',
  816. key: 'o2_ave',
  817. width: 100,
  818. align: 'center',
  819. },
  820. {
  821. title: 'CO(ppm)',
  822. dataIndex: 'co_ave',
  823. key: 'co_ave',
  824. width: 100,
  825. align: 'center',
  826. },
  827. {
  828. title: 'CO₂(%)',
  829. dataIndex: 'co2_ave',
  830. key: 'co2_ave',
  831. width: 100,
  832. align: 'center',
  833. },
  834. {
  835. title: '气温(℃)',
  836. dataIndex: 'qw',
  837. key: 'qw',
  838. width: 100,
  839. align: 'center',
  840. },
  841. {
  842. title: '水温(℃)',
  843. dataIndex: 'sw',
  844. key: 'sw',
  845. width: 100,
  846. align: 'center',
  847. },
  848. {
  849. title: '压差(Pa)',
  850. dataIndex: 'yc',
  851. key: 'yc',
  852. width: 100,
  853. align: 'center',
  854. },
  855. ],
  856. },
  857. {
  858. title: '闭前',
  859. children: [
  860. {
  861. title: 'CH₄(%)',
  862. dataIndex: 'ch4_ave_bq',
  863. key: 'ch4_ave_bq',
  864. width: 100,
  865. align: 'center',
  866. },
  867. {
  868. title: 'O₂(%)',
  869. dataIndex: 'o2_ave_bq',
  870. key: 'o2_ave_bq',
  871. width: 100,
  872. align: 'center',
  873. },
  874. ],
  875. },
  876. {
  877. title: '观测孔风流方向',
  878. dataIndex: 'gckflfx',
  879. key: 'gckflfx',
  880. width: 100,
  881. align: 'center',
  882. },
  883. {
  884. title: '密闭完好情况',
  885. dataIndex: 'mbwhqk',
  886. key: 'mbwhqk',
  887. width: 100,
  888. align: 'center',
  889. },
  890. {
  891. title: '备注',
  892. dataIndex: 'smark',
  893. key: 'smark',
  894. width: 100,
  895. align: 'center',
  896. },
  897. {
  898. title: '煤自燃阶段',
  899. dataIndex: 'internalFireWarnLevel',
  900. width: 100,
  901. align: 'center',
  902. },
  903. {
  904. title: '操作',
  905. dataIndex: 'action',
  906. width: 100,
  907. align: 'center',
  908. },
  909. ];
  910. export const Wlmlcolumns: BasicColumn[] = [
  911. {
  912. title: '序号',
  913. width: 60,
  914. align: 'center',
  915. dataIndex: 'xh',
  916. key: 'xh',
  917. },
  918. {
  919. title: '地点名称',
  920. dataIndex: 'jcdd',
  921. key: 'jcdd',
  922. width: 100,
  923. align: 'center',
  924. },
  925. {
  926. title: '氧气(%)',
  927. dataIndex: 'o2_ave',
  928. key: 'o2_ave',
  929. width: 100,
  930. align: 'center',
  931. },
  932. {
  933. title: '氮气(%)',
  934. dataIndex: 'n2_ave',
  935. key: 'n2_ave',
  936. width: 100,
  937. align: 'center',
  938. },
  939. {
  940. title: '一氧化碳(ppm)',
  941. dataIndex: 'co_ave',
  942. key: 'co_ave',
  943. width: 100,
  944. align: 'center',
  945. },
  946. {
  947. title: '二氧化碳(%)',
  948. dataIndex: 'co2_ave',
  949. key: 'co2_ave',
  950. width: 100,
  951. align: 'center',
  952. },
  953. {
  954. title: '甲烷(%)',
  955. dataIndex: 'ch4_ave',
  956. key: 'ch4_ave',
  957. width: 100,
  958. align: 'center',
  959. },
  960. {
  961. title: '乙烷(ppm)',
  962. dataIndex: 'c2h6_ave',
  963. key: 'c2h6_ave',
  964. width: 100,
  965. align: 'center',
  966. },
  967. {
  968. title: '乙烯(ppm)',
  969. dataIndex: 'c2h4_ave',
  970. key: 'c2h4_ave',
  971. width: 100,
  972. align: 'center',
  973. },
  974. {
  975. title: '乙炔(ppm)',
  976. dataIndex: 'c2h2_ave',
  977. key: 'c2h2_ave',
  978. width: 100,
  979. align: 'center',
  980. },
  981. {
  982. title: '化验日期',
  983. dataIndex: 'qyfxsj',
  984. key: 'qyfxsj',
  985. width: 100,
  986. align: 'center',
  987. },
  988. {
  989. title: '备注',
  990. dataIndex: 'smark',
  991. key: 'smark',
  992. width: 100,
  993. align: 'center',
  994. },
  995. {
  996. title: '煤自燃阶段',
  997. dataIndex: 'internalFireWarnLevel',
  998. width: 100,
  999. align: 'center',
  1000. },
  1001. {
  1002. title: '操作',
  1003. dataIndex: 'action',
  1004. width: 100,
  1005. align: 'center',
  1006. },
  1007. ];
  1008. export const Jinjiecolumns: BasicColumn[] = [
  1009. {
  1010. title: '序号',
  1011. width: 60,
  1012. align: 'center',
  1013. dataIndex: 'xh',
  1014. key: 'xh',
  1015. },
  1016. {
  1017. title: '检查地点',
  1018. dataIndex: 'jcdd',
  1019. key: 'jcdd',
  1020. width: 100,
  1021. align: 'center',
  1022. },
  1023. {
  1024. title: '气体分析结果表',
  1025. children: [
  1026. {
  1027. title: 'N₂(%)',
  1028. dataIndex: 'n2_ave',
  1029. key: 'n2_ave',
  1030. width: 100,
  1031. align: 'center',
  1032. },
  1033. {
  1034. title: 'CO₂(%)',
  1035. dataIndex: 'co2_ave',
  1036. key: 'co2_ave',
  1037. width: 100,
  1038. align: 'center',
  1039. },
  1040. {
  1041. title: 'O₂(%)',
  1042. dataIndex: 'o2_ave',
  1043. key: 'o2_ave',
  1044. width: 100,
  1045. align: 'center',
  1046. },
  1047. {
  1048. title: 'CO(%)',
  1049. dataIndex: 'co_ave',
  1050. key: 'co_ave',
  1051. width: 100,
  1052. align: 'center',
  1053. },
  1054. {
  1055. title: 'CH₄(%)',
  1056. dataIndex: 'ch4_ave',
  1057. key: 'ch4_ave',
  1058. width: 100,
  1059. align: 'center',
  1060. },
  1061. {
  1062. title: 'C₂H₂(%)',
  1063. dataIndex: 'c2h2_ave',
  1064. key: 'c2h2_ave',
  1065. width: 100,
  1066. align: 'center',
  1067. },
  1068. {
  1069. title: 'C2H6(%)',
  1070. dataIndex: 'c2h6_ave',
  1071. key: 'c2h6_ave',
  1072. width: 100,
  1073. align: 'center',
  1074. },
  1075. {
  1076. title: 'C₂H₄(%)',
  1077. dataIndex: 'c2h4_ave',
  1078. key: 'c2h4_ave',
  1079. width: 100,
  1080. align: 'center',
  1081. },
  1082. ],
  1083. },
  1084. {
  1085. title: '分析时间',
  1086. dataIndex: 'fxsj',
  1087. key: 'fxsj',
  1088. width: 100,
  1089. align: 'center',
  1090. },
  1091. {
  1092. title: '煤自燃阶段',
  1093. dataIndex: 'internalFireWarnLevel',
  1094. width: 100,
  1095. align: 'center',
  1096. },
  1097. {
  1098. title: '操作',
  1099. dataIndex: 'action',
  1100. width: 100,
  1101. align: 'center',
  1102. },
  1103. ];
  1104. export const Hlgcolumns: BasicColumn[] = [
  1105. {
  1106. title: '序号',
  1107. width: 60,
  1108. align: 'center',
  1109. dataIndex: 'xh',
  1110. key: 'xh',
  1111. },
  1112. {
  1113. title: '地点名称',
  1114. dataIndex: 'jcdd',
  1115. key: 'jcdd',
  1116. width: 100,
  1117. align: 'center',
  1118. },
  1119. {
  1120. title: '氧气(%)',
  1121. dataIndex: 'o2_ave',
  1122. key: 'o2_ave',
  1123. width: 100,
  1124. align: 'center',
  1125. },
  1126. {
  1127. title: '氮气(%)',
  1128. dataIndex: 'n2_ave',
  1129. key: 'n2_ave',
  1130. width: 100,
  1131. align: 'center',
  1132. },
  1133. {
  1134. title: '甲烷(%)',
  1135. dataIndex: 'ch4_ave',
  1136. key: 'ch4_ave',
  1137. width: 100,
  1138. align: 'center',
  1139. },
  1140. {
  1141. title: '一氧化碳(%)',
  1142. dataIndex: 'co_ave',
  1143. key: 'co_ave',
  1144. width: 100,
  1145. align: 'center',
  1146. },
  1147. {
  1148. title: '二氧化碳(%)',
  1149. dataIndex: 'co2_ave',
  1150. key: 'co2_ave',
  1151. width: 100,
  1152. align: 'center',
  1153. },
  1154. {
  1155. title: '乙烷(%)',
  1156. dataIndex: 'c2h6_ave',
  1157. key: 'c2h6_ave',
  1158. width: 100,
  1159. align: 'center',
  1160. },
  1161. {
  1162. title: '乙烯(%)',
  1163. dataIndex: 'c2h4_ave',
  1164. key: 'c2h4_ave',
  1165. width: 100,
  1166. align: 'center',
  1167. },
  1168. {
  1169. title: '乙炔(%)',
  1170. dataIndex: 'c2h2_ave',
  1171. key: 'c2h2_ave',
  1172. width: 100,
  1173. align: 'center',
  1174. },
  1175. {
  1176. title: '化验日期',
  1177. dataIndex: 'qyfxsj',
  1178. key: 'qyfxsj',
  1179. width: 100,
  1180. align: 'center',
  1181. },
  1182. {
  1183. title: '备注',
  1184. dataIndex: 'smark',
  1185. key: 'smark',
  1186. width: 100,
  1187. align: 'center',
  1188. },
  1189. {
  1190. title: '煤自燃阶段',
  1191. dataIndex: 'internalFireWarnLevel',
  1192. width: 100,
  1193. align: 'center',
  1194. },
  1195. {
  1196. title: '操作',
  1197. dataIndex: 'action',
  1198. width: 100,
  1199. align: 'center',
  1200. },
  1201. ];