bundleSpy-table.data.ts 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301
  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: 'C₂H₆(%)',
  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: '乙烷(C₂H₆%)',
  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: 'C₂H₆(%)',
  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: 'C₂H₆(%)',
  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: 'C₂H₆(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: 'C₂H₆(%)',
  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. ];
  1202. export const Ltcolumns: BasicColumn[] = [
  1203. {
  1204. title: '序号',
  1205. width: 60,
  1206. align: 'center',
  1207. dataIndex: 'xh',
  1208. key: 'xh',
  1209. },
  1210. {
  1211. title: '地点名称',
  1212. dataIndex: 'jcdd',
  1213. key: 'jcdd',
  1214. width: 100,
  1215. align: 'center',
  1216. },
  1217. {
  1218. title: 'O₂(%)',
  1219. dataIndex: 'o2_ave',
  1220. key: 'o2_ave',
  1221. width: 100,
  1222. align: 'center',
  1223. },
  1224. {
  1225. title: 'N₂(%)',
  1226. dataIndex: 'n2_ave',
  1227. key: 'n2_ave',
  1228. width: 100,
  1229. align: 'center',
  1230. },
  1231. {
  1232. title: 'CH₄(%)',
  1233. dataIndex: 'ch4_ave',
  1234. key: 'ch4_ave',
  1235. width: 100,
  1236. align: 'center',
  1237. },
  1238. {
  1239. title: 'CO₂(%)',
  1240. dataIndex: 'co2_ave',
  1241. key: 'co2_ave',
  1242. width: 100,
  1243. align: 'center',
  1244. },
  1245. {
  1246. title: 'CO(ppm)',
  1247. dataIndex: 'co_ave',
  1248. key: 'co_ave',
  1249. width: 100,
  1250. align: 'center',
  1251. },
  1252. {
  1253. title: 'C₂H₄(ppm)',
  1254. dataIndex: 'c2h4_ave',
  1255. key: 'c2h4_ave',
  1256. width: 100,
  1257. align: 'center',
  1258. },
  1259. {
  1260. title: 'C₂H₆(ppm)',
  1261. dataIndex: 'c2h6_ave',
  1262. key: 'c2h6_ave',
  1263. width: 100,
  1264. align: 'center',
  1265. },
  1266. {
  1267. title: 'C₂H₂(ppm)',
  1268. dataIndex: 'c2h2_ave',
  1269. key: 'c2h2_ave',
  1270. width: 100,
  1271. align: 'center',
  1272. },
  1273. {
  1274. title: '化验日期',
  1275. dataIndex: 'qyfxsj',
  1276. key: 'qyfxsj',
  1277. width: 100,
  1278. align: 'center',
  1279. },
  1280. {
  1281. title: '备注',
  1282. dataIndex: 'smark',
  1283. key: 'smark',
  1284. width: 100,
  1285. align: 'center',
  1286. },
  1287. {
  1288. title: '煤自燃阶段',
  1289. dataIndex: 'internalFireWarnLevel',
  1290. width: 100,
  1291. align: 'center',
  1292. },
  1293. {
  1294. title: '操作',
  1295. dataIndex: 'action',
  1296. width: 100,
  1297. align: 'center',
  1298. },
  1299. ];