bundle-table.data.ts 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572
  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. ];
  371. export const Bdcolumns: BasicColumn[] = [
  372. {
  373. title: '束管编号',
  374. width: 80,
  375. align: 'center',
  376. dataIndex: 'xh',
  377. key: 'xh',
  378. },
  379. {
  380. title: '监测地点',
  381. dataIndex: 'jcdd',
  382. key: 'jcdd',
  383. width: 130,
  384. align: 'center',
  385. },
  386. {
  387. title: '氧气(O₂%)',
  388. children: [
  389. {
  390. title: '最大值',
  391. dataIndex: 'o2_max',
  392. key: 'o2_max',
  393. width: 80,
  394. align: 'center',
  395. },
  396. {
  397. title: '最小值',
  398. dataIndex: 'o2_min',
  399. key: 'o2_min',
  400. width: 80,
  401. align: 'center',
  402. },
  403. {
  404. title: '平均值',
  405. dataIndex: 'o2_ave',
  406. key: 'o2_ave',
  407. width: 80,
  408. align: 'center',
  409. },
  410. ],
  411. },
  412. {
  413. title: '氮气(N₂%)',
  414. children: [
  415. {
  416. title: '最大值',
  417. dataIndex: 'n2_max',
  418. key: 'n2_max',
  419. width: 80,
  420. align: 'center',
  421. },
  422. {
  423. title: '平均值',
  424. dataIndex: 'n2_ave',
  425. key: 'n2_ave',
  426. width: 80,
  427. align: 'center',
  428. },
  429. {
  430. title: '平均值',
  431. dataIndex: 'n2_ave',
  432. key: 'n2_ave',
  433. width: 80,
  434. align: 'center',
  435. },
  436. ],
  437. },
  438. {
  439. title: '一氧化碳(CO%)',
  440. children: [
  441. {
  442. title: '最大值',
  443. dataIndex: 'co_max',
  444. key: 'co_max',
  445. width: 80,
  446. align: 'center',
  447. },
  448. {
  449. title: '最小值',
  450. dataIndex: 'co_min',
  451. key: 'co_min',
  452. width: 80,
  453. align: 'center',
  454. },
  455. {
  456. title: '平均值',
  457. dataIndex: 'co_ave',
  458. key: 'co_ave',
  459. width: 80,
  460. align: 'center',
  461. },
  462. ],
  463. },
  464. {
  465. title: '二氧化碳(CO₂%)',
  466. children: [
  467. {
  468. title: '最大值',
  469. dataIndex: 'co2_max',
  470. key: 'co2_max',
  471. width: 80,
  472. align: 'center',
  473. },
  474. {
  475. title: '最小值',
  476. dataIndex: 'co2_min',
  477. key: 'co2_min',
  478. width: 80,
  479. align: 'center',
  480. },
  481. {
  482. title: '平均值',
  483. dataIndex: 'co2_ave',
  484. key: 'co2_ave',
  485. width: 80,
  486. align: 'center',
  487. },
  488. ],
  489. },
  490. {
  491. title: '甲烷(CH₄%)',
  492. children: [
  493. {
  494. title: '最大值',
  495. dataIndex: 'ch4_max',
  496. key: 'ch4_max',
  497. width: 80,
  498. align: 'center',
  499. },
  500. {
  501. title: '最小值',
  502. dataIndex: 'ch4_min',
  503. key: 'ch4_min',
  504. width: 80,
  505. align: 'center',
  506. },
  507. {
  508. title: '平均值',
  509. dataIndex: 'ch4_ave',
  510. key: 'ch4_ave',
  511. width: 80,
  512. align: 'center',
  513. },
  514. ],
  515. },
  516. {
  517. title: '乙烯(C₂H₄%)',
  518. children: [
  519. {
  520. title: '最大值',
  521. dataIndex: 'c2h4_max',
  522. key: 'c2h4_max',
  523. width: 80,
  524. align: 'center',
  525. },
  526. {
  527. title: '最小值',
  528. dataIndex: 'c2h4_min',
  529. key: 'c2h4_min',
  530. width: 80,
  531. align: 'center',
  532. },
  533. {
  534. title: '平均值',
  535. dataIndex: 'c2h4_ave',
  536. key: 'c2h4_ave',
  537. width: 80,
  538. align: 'center',
  539. },
  540. ],
  541. },
  542. {
  543. title: '乙炔(C₂H₂%)',
  544. children: [
  545. {
  546. title: '最大值',
  547. dataIndex: 'c2h2_max',
  548. key: 'c2h2_max',
  549. width: 80,
  550. align: 'center',
  551. },
  552. {
  553. title: '最小值',
  554. dataIndex: 'c2h2_min',
  555. key: 'c2h2_min',
  556. width: 80,
  557. align: 'center',
  558. },
  559. {
  560. title: '平均值',
  561. dataIndex: 'c2h2_ave',
  562. key: 'c2h2_ave',
  563. width: 80,
  564. align: 'center',
  565. },
  566. ],
  567. },
  568. {
  569. title: '氢气(H₂%)',
  570. children: [
  571. {
  572. title: '最大值',
  573. dataIndex: 'h2_max',
  574. key: 'h2_max',
  575. width: 80,
  576. align: 'center',
  577. },
  578. {
  579. title: '最小值',
  580. dataIndex: 'h2_min',
  581. key: 'h2_min',
  582. width: 80,
  583. align: 'center',
  584. },
  585. {
  586. title: '平均值',
  587. dataIndex: 'h2_ave',
  588. key: 'h2_ave',
  589. width: 80,
  590. align: 'center',
  591. },
  592. ],
  593. },
  594. {
  595. title: '二氧化氮(NO₂%)',
  596. children: [
  597. {
  598. title: '最大值',
  599. dataIndex: 'no2_max',
  600. key: 'no22_max',
  601. width: 80,
  602. align: 'center',
  603. },
  604. {
  605. title: '最小值',
  606. dataIndex: 'no22_max',
  607. key: 'no2_max',
  608. width: 80,
  609. align: 'center',
  610. },
  611. {
  612. title: '平均值',
  613. dataIndex: 'no2_ave',
  614. key: 'no2_ave',
  615. width: 80,
  616. align: 'center',
  617. },
  618. ],
  619. },
  620. {
  621. title: '煤自燃阶段',
  622. dataIndex: 'internalFireWarnLevel',
  623. width: 100,
  624. align: 'center',
  625. },
  626. {
  627. title: '操作',
  628. dataIndex: 'action',
  629. width: 100,
  630. align: 'center',
  631. },
  632. ];
  633. export const Bltcolumns: BasicColumn[] = [
  634. {
  635. title: '序号',
  636. width: 80,
  637. align: 'center',
  638. dataIndex: 'xh',
  639. key: 'xh',
  640. },
  641. {
  642. title: '管号',
  643. width: 80,
  644. align: 'center',
  645. dataIndex: 'gh',
  646. key: 'gh',
  647. },
  648. {
  649. title: '管路名称',
  650. dataIndex: 'jcdd',
  651. key: 'jcdd',
  652. width: 130,
  653. align: 'center',
  654. },
  655. {
  656. title: 'COppm',
  657. children: [
  658. {
  659. title: '最大值',
  660. dataIndex: 'co_max',
  661. key: 'co_max',
  662. width: 80,
  663. align: 'center',
  664. },
  665. {
  666. title: '最小值',
  667. dataIndex: 'co_min',
  668. key: 'co_min',
  669. width: 80,
  670. align: 'center',
  671. },
  672. {
  673. title: '平均值',
  674. dataIndex: 'co_ave',
  675. key: 'co_ave',
  676. width: 80,
  677. align: 'center',
  678. },
  679. ],
  680. },
  681. {
  682. title: 'CO₂%',
  683. children: [
  684. {
  685. title: '最大值',
  686. dataIndex: 'co2_max',
  687. key: 'co2_max',
  688. width: 80,
  689. align: 'center',
  690. },
  691. {
  692. title: '最小值',
  693. dataIndex: 'co2_min',
  694. key: 'co2_min',
  695. width: 80,
  696. align: 'center',
  697. },
  698. {
  699. title: '平均值',
  700. dataIndex: 'co2_ave',
  701. key: 'co2_ave',
  702. width: 80,
  703. align: 'center',
  704. },
  705. ],
  706. },
  707. {
  708. title: 'O₂%',
  709. children: [
  710. {
  711. title: '最大值',
  712. dataIndex: 'o2_max',
  713. key: 'o2_max',
  714. width: 80,
  715. align: 'center',
  716. },
  717. {
  718. title: '最小值',
  719. dataIndex: 'o2_min',
  720. key: 'o2_min',
  721. width: 80,
  722. align: 'center',
  723. },
  724. {
  725. title: '平均值',
  726. dataIndex: 'o2_ave',
  727. key: 'o2_ave',
  728. width: 80,
  729. align: 'center',
  730. },
  731. ],
  732. },
  733. {
  734. title: 'CH₄%',
  735. children: [
  736. {
  737. title: '最大值',
  738. dataIndex: 'ch4_max',
  739. key: 'ch4_max',
  740. width: 80,
  741. align: 'center',
  742. },
  743. {
  744. title: '最小值',
  745. dataIndex: 'ch4_min',
  746. key: 'ch4_min',
  747. width: 80,
  748. align: 'center',
  749. },
  750. {
  751. title: '平均值',
  752. dataIndex: 'ch4_ave',
  753. key: 'ch4_ave',
  754. width: 80,
  755. align: 'center',
  756. },
  757. ],
  758. },
  759. {
  760. title: 'N₂%',
  761. children: [
  762. {
  763. title: '最大值',
  764. dataIndex: 'n2_max',
  765. key: 'n2_max',
  766. width: 80,
  767. align: 'center',
  768. },
  769. {
  770. title: '平均值',
  771. dataIndex: 'n2_ave',
  772. key: 'n2_ave',
  773. width: 80,
  774. align: 'center',
  775. },
  776. {
  777. title: '平均值',
  778. dataIndex: 'n2_ave',
  779. key: 'n2_ave',
  780. width: 80,
  781. align: 'center',
  782. },
  783. ],
  784. },
  785. {
  786. title: 'C₂H₂%',
  787. children: [
  788. {
  789. title: '最大值',
  790. dataIndex: 'c2h2_max',
  791. key: 'c2h2_max',
  792. width: 80,
  793. align: 'center',
  794. },
  795. {
  796. title: '最小值',
  797. dataIndex: 'c2h2_min',
  798. key: 'c2h2_min',
  799. width: 80,
  800. align: 'center',
  801. },
  802. {
  803. title: '平均值',
  804. dataIndex: 'c2h2_ave',
  805. key: 'c2h2_ave',
  806. width: 80,
  807. align: 'center',
  808. },
  809. ],
  810. },
  811. {
  812. title: 'C₂H₄%',
  813. children: [
  814. {
  815. title: '最大值',
  816. dataIndex: 'c2h4_max',
  817. key: 'c2h4_max',
  818. width: 80,
  819. align: 'center',
  820. },
  821. {
  822. title: '最小值',
  823. dataIndex: 'c2h4_min',
  824. key: 'c2h4_min',
  825. width: 80,
  826. align: 'center',
  827. },
  828. {
  829. title: '平均值',
  830. dataIndex: 'c2h4_ave',
  831. key: 'c2h4_ave',
  832. width: 80,
  833. align: 'center',
  834. },
  835. ],
  836. },
  837. {
  838. title: '煤自燃阶段',
  839. dataIndex: 'internalFireWarnLevel',
  840. width: 100,
  841. align: 'center',
  842. },
  843. {
  844. title: '操作',
  845. dataIndex: 'action',
  846. width: 100,
  847. align: 'center',
  848. },
  849. ];
  850. export const Sgtcolumns: BasicColumn[] = [
  851. {
  852. title: '设备号',
  853. width: 60,
  854. align: 'center',
  855. dataIndex: 'sbh',
  856. key: 'sbh',
  857. },
  858. {
  859. title: '设备安装地点',
  860. width: 100,
  861. align: 'center',
  862. dataIndex: 'jcdd',
  863. key: 'jcdd',
  864. },
  865. {
  866. title: '管路编号',
  867. dataIndex: 'glbh',
  868. key: 'glbh',
  869. width: 80,
  870. align: 'center',
  871. },
  872. {
  873. title: '取样地点',
  874. dataIndex: 'jcdd',
  875. key: 'jcdd',
  876. width: 100,
  877. align: 'center',
  878. },
  879. {
  880. title: '报警合计',
  881. dataIndex: 'bjhj',
  882. key: 'bjhj',
  883. width: 100,
  884. align: 'center',
  885. },
  886. {
  887. title: 'O₂(%)',
  888. children: [
  889. {
  890. title: '最小值',
  891. dataIndex: 'o2_min',
  892. key: 'o2_min',
  893. width: 80,
  894. align: 'center',
  895. },
  896. {
  897. title: '平均值',
  898. dataIndex: 'o2_ave',
  899. key: 'o2_ave',
  900. width: 80,
  901. align: 'center',
  902. },
  903. ],
  904. },
  905. {
  906. title: 'CO₂(%)',
  907. children: [
  908. {
  909. title: '最大值',
  910. dataIndex: 'co2_max',
  911. key: 'co2_max',
  912. width: 80,
  913. align: 'center',
  914. },
  915. {
  916. title: '平均值',
  917. dataIndex: 'co2_ave',
  918. key: 'co2_ave',
  919. width: 80,
  920. align: 'center',
  921. },
  922. ],
  923. },
  924. {
  925. title: 'CO(PPM)',
  926. children: [
  927. {
  928. title: '最大值',
  929. dataIndex: 'co_max',
  930. key: 'co_max',
  931. width: 80,
  932. align: 'center',
  933. },
  934. {
  935. title: '平均值',
  936. dataIndex: 'co_ave',
  937. key: 'co_ave',
  938. width: 80,
  939. align: 'center',
  940. },
  941. ],
  942. },
  943. {
  944. title: 'CH₄(%)',
  945. children: [
  946. {
  947. title: '最大值',
  948. dataIndex: 'ch4_max',
  949. key: 'ch4_max',
  950. width: 80,
  951. align: 'center',
  952. },
  953. ],
  954. },
  955. {
  956. title: 'C₂H₂(PPM)',
  957. children: [
  958. {
  959. title: '最大值',
  960. dataIndex: 'c2h2_max',
  961. key: 'c2h2_max',
  962. width: 80,
  963. align: 'center',
  964. },
  965. {
  966. title: '平均值',
  967. dataIndex: 'c2h2_ave',
  968. key: 'c2h2_ave',
  969. width: 80,
  970. align: 'center',
  971. },
  972. ],
  973. },
  974. {
  975. title: 'C₂H₄(PPM)',
  976. children: [
  977. {
  978. title: '最大值',
  979. dataIndex: 'c2h4_max',
  980. key: 'c2h4_max',
  981. width: 80,
  982. align: 'center',
  983. },
  984. {
  985. title: '平均值',
  986. dataIndex: 'c2h4_ave',
  987. key: 'c2h4_ave',
  988. width: 80,
  989. align: 'center',
  990. },
  991. ],
  992. },
  993. {
  994. title: '备注',
  995. dataIndex: 'smark',
  996. key: 'smark',
  997. width: 100,
  998. align: 'center',
  999. },
  1000. {
  1001. title: '煤自燃阶段',
  1002. dataIndex: 'internalFireWarnLevel',
  1003. width: 100,
  1004. align: 'center',
  1005. },
  1006. {
  1007. title: '操作',
  1008. dataIndex: 'action',
  1009. width: 100,
  1010. align: 'center',
  1011. },
  1012. ];
  1013. export const Yjlcolumns: BasicColumn[] = [
  1014. {
  1015. title: '设备名称',
  1016. width: 100,
  1017. align: 'center',
  1018. dataIndex: 'sbmc',
  1019. key: 'sbmc',
  1020. },
  1021. {
  1022. title: '设备编号',
  1023. width: 60,
  1024. align: 'center',
  1025. dataIndex: 'sbh',
  1026. key: 'sbh',
  1027. },
  1028. {
  1029. title: '管路名称',
  1030. dataIndex: 'glmc',
  1031. key: 'glmc',
  1032. width: 100,
  1033. align: 'center',
  1034. },
  1035. {
  1036. title: '管路编号',
  1037. dataIndex: 'glbh',
  1038. key: 'glbh',
  1039. width: 80,
  1040. align: 'center',
  1041. },
  1042. {
  1043. title: '分析次数',
  1044. dataIndex: 'fxcs',
  1045. key: 'fxcs',
  1046. width: 100,
  1047. align: 'center',
  1048. },
  1049. {
  1050. title: 'O₂(%)',
  1051. children: [
  1052. {
  1053. title: '最小值',
  1054. dataIndex: 'o2_min',
  1055. key: 'o2_min',
  1056. width: 80,
  1057. align: 'center',
  1058. },
  1059. {
  1060. title: '平均值',
  1061. dataIndex: 'o2_ave',
  1062. key: 'o2_ave',
  1063. width: 80,
  1064. align: 'center',
  1065. },
  1066. ],
  1067. },
  1068. {
  1069. title: 'CO₂(%)',
  1070. children: [
  1071. {
  1072. title: '最大值',
  1073. dataIndex: 'co2_max',
  1074. key: 'co2_max',
  1075. width: 80,
  1076. align: 'center',
  1077. },
  1078. {
  1079. title: '平均值',
  1080. dataIndex: 'co2_ave',
  1081. key: 'co2_ave',
  1082. width: 80,
  1083. align: 'center',
  1084. },
  1085. ],
  1086. },
  1087. {
  1088. title: 'CO(PPM)',
  1089. children: [
  1090. {
  1091. title: '最大值',
  1092. dataIndex: 'co_max',
  1093. key: 'co_max',
  1094. width: 80,
  1095. align: 'center',
  1096. },
  1097. {
  1098. title: '平均值',
  1099. dataIndex: 'co_ave',
  1100. key: 'co_ave',
  1101. width: 80,
  1102. align: 'center',
  1103. },
  1104. ],
  1105. },
  1106. {
  1107. title: 'CH₄(%)',
  1108. children: [
  1109. {
  1110. title: '最大值',
  1111. dataIndex: 'ch4_max',
  1112. key: 'ch4_max',
  1113. width: 80,
  1114. align: 'center',
  1115. },
  1116. {
  1117. title: '平均值',
  1118. dataIndex: 'ch4_ave',
  1119. key: 'ch4_ave',
  1120. width: 80,
  1121. align: 'center',
  1122. },
  1123. ],
  1124. },
  1125. {
  1126. title: 'N₂(%)',
  1127. children: [
  1128. {
  1129. title: '最大值',
  1130. dataIndex: 'n2_max',
  1131. key: 'n2_max',
  1132. width: 80,
  1133. align: 'center',
  1134. },
  1135. {
  1136. title: '平均值',
  1137. dataIndex: 'n2_ave',
  1138. key: 'n2_ave',
  1139. width: 80,
  1140. align: 'center',
  1141. },
  1142. ],
  1143. },
  1144. {
  1145. title: 'C₂H₂(PPM)',
  1146. children: [
  1147. {
  1148. title: '最大值',
  1149. dataIndex: 'c2h2_max',
  1150. key: 'c2h2_max',
  1151. width: 80,
  1152. align: 'center',
  1153. },
  1154. {
  1155. title: '平均值',
  1156. dataIndex: 'c2h2_ave',
  1157. key: 'c2h2_ave',
  1158. width: 80,
  1159. align: 'center',
  1160. },
  1161. ],
  1162. },
  1163. {
  1164. title: 'C₂H₄(PPM)',
  1165. children: [
  1166. {
  1167. title: '最大值',
  1168. dataIndex: 'c2h4_max',
  1169. key: 'c2h4_max',
  1170. width: 80,
  1171. align: 'center',
  1172. },
  1173. {
  1174. title: '平均值',
  1175. dataIndex: 'c2h4_ave',
  1176. key: 'c2h4_ave',
  1177. width: 80,
  1178. align: 'center',
  1179. },
  1180. ],
  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 Cctrkcolumns: BasicColumn[] = [
  1203. {
  1204. title: '设备号',
  1205. width: 60,
  1206. align: 'center',
  1207. dataIndex: 'xh',
  1208. },
  1209. {
  1210. title: '采空区',
  1211. width: 100,
  1212. align: 'center',
  1213. dataIndex: 'ckq',
  1214. key: 'ckq',
  1215. },
  1216. {
  1217. title: '采样点',
  1218. width: 60,
  1219. align: 'center',
  1220. dataIndex: 'jcdd',
  1221. key: 'jcdd',
  1222. },
  1223. {
  1224. title: '检测时间',
  1225. dataIndex: 'qyfxsj',
  1226. key: 'qyfxsj',
  1227. width: 100,
  1228. align: 'center',
  1229. },
  1230. {
  1231. title: 'O₂(%)',
  1232. dataIndex: 'o2_ave',
  1233. key: 'o2_ave',
  1234. width: 80,
  1235. align: 'center',
  1236. },
  1237. {
  1238. title: 'CO₂(%)',
  1239. dataIndex: 'co2_ave',
  1240. key: 'co2_ave',
  1241. width: 80,
  1242. align: 'center',
  1243. },
  1244. {
  1245. title: 'CO(PPM)',
  1246. dataIndex: 'co_ave',
  1247. key: 'co_ave',
  1248. width: 80,
  1249. align: 'center',
  1250. },
  1251. {
  1252. title: 'CH₄(%)',
  1253. dataIndex: 'ch4_ave',
  1254. key: 'ch4_ave',
  1255. width: 80,
  1256. align: 'center',
  1257. },
  1258. {
  1259. title: 'N₂(%)',
  1260. dataIndex: 'n2_ave',
  1261. key: 'n2_ave',
  1262. width: 80,
  1263. align: 'center',
  1264. },
  1265. {
  1266. title: 'C₂H₂(PPM)',
  1267. dataIndex: 'c2h2_ave',
  1268. key: 'c2h2_ave',
  1269. width: 80,
  1270. align: 'center',
  1271. },
  1272. {
  1273. title: 'C₂H₄(PPM)',
  1274. dataIndex: 'c2h4_ave',
  1275. key: 'c2h4_ave',
  1276. width: 80,
  1277. align: 'center',
  1278. },
  1279. {
  1280. title: 'C₂H₆(PPM)',
  1281. dataIndex: 'c2h6_ave',
  1282. key: 'c2h6_ave',
  1283. width: 80,
  1284. align: 'center',
  1285. },
  1286. {
  1287. title: '煤自燃阶段',
  1288. dataIndex: 'internalFireWarnLevel',
  1289. width: 100,
  1290. align: 'center',
  1291. },
  1292. {
  1293. title: '操作',
  1294. dataIndex: 'action',
  1295. width: 100,
  1296. align: 'center',
  1297. },
  1298. ];
  1299. export const wlmlcolumns: BasicColumn[] = [
  1300. {
  1301. title: '设备号',
  1302. width: 60,
  1303. align: 'center',
  1304. dataIndex: 'xh',
  1305. },
  1306. {
  1307. title: '设备名称',
  1308. width: 100,
  1309. align: 'center',
  1310. dataIndex: 'sbmc',
  1311. key: 'sbmc',
  1312. },
  1313. {
  1314. title: '管路编号',
  1315. width: 60,
  1316. align: 'center',
  1317. dataIndex: 'glbh',
  1318. key: 'glbh',
  1319. },
  1320. {
  1321. title: '管路名称',
  1322. width: 60,
  1323. align: 'center',
  1324. dataIndex: 'glmc',
  1325. key: 'glmc',
  1326. },
  1327. {
  1328. title: '分析次数',
  1329. dataIndex: 'fxcs',
  1330. key: 'fxcs',
  1331. width: 100,
  1332. align: 'center',
  1333. },
  1334. {
  1335. title: 'O₂(%)',
  1336. dataIndex: 'o2_ave',
  1337. key: 'o2_ave',
  1338. width: 80,
  1339. align: 'center',
  1340. },
  1341. {
  1342. title: 'CO₂(%)',
  1343. dataIndex: 'co2_ave',
  1344. key: 'co2_ave',
  1345. width: 80,
  1346. align: 'center',
  1347. },
  1348. {
  1349. title: 'CO(PPM)',
  1350. dataIndex: 'co_ave',
  1351. key: 'co_ave',
  1352. width: 80,
  1353. align: 'center',
  1354. },
  1355. {
  1356. title: 'CH₄(%)',
  1357. dataIndex: 'ch4_ave',
  1358. key: 'ch4_ave',
  1359. width: 80,
  1360. align: 'center',
  1361. },
  1362. {
  1363. title: 'N₂(%)',
  1364. dataIndex: 'n2_ave',
  1365. key: 'n2_ave',
  1366. width: 80,
  1367. align: 'center',
  1368. },
  1369. {
  1370. title: 'C₂H₂(PPM)',
  1371. dataIndex: 'c2h2_ave',
  1372. key: 'c2h2_ave',
  1373. width: 80,
  1374. align: 'center',
  1375. },
  1376. {
  1377. title: 'C₂H₄(PPM)',
  1378. dataIndex: 'c2h4_ave',
  1379. key: 'c2h4_ave',
  1380. width: 80,
  1381. align: 'center',
  1382. },
  1383. {
  1384. title: '煤自燃阶段',
  1385. dataIndex: 'internalFireWarnLevel',
  1386. width: 100,
  1387. align: 'center',
  1388. },
  1389. {
  1390. title: '操作',
  1391. dataIndex: 'action',
  1392. width: 100,
  1393. align: 'center',
  1394. },
  1395. ];
  1396. export const Cctkcolumns: BasicColumn[] = [
  1397. {
  1398. title: '设备名称',
  1399. width: 100,
  1400. align: 'center',
  1401. dataIndex: 'sbmc',
  1402. key: 'sbmc',
  1403. },
  1404. {
  1405. title: '管路名称',
  1406. dataIndex: 'jcdd',
  1407. key: 'jcdd',
  1408. width: 100,
  1409. align: 'center',
  1410. },
  1411. {
  1412. title: '管路编号',
  1413. dataIndex: 'glbh',
  1414. key: 'glbh',
  1415. width: 80,
  1416. align: 'center',
  1417. },
  1418. {
  1419. title: '分析次数',
  1420. dataIndex: 'fxcs',
  1421. key: 'fxcs',
  1422. width: 100,
  1423. align: 'center',
  1424. },
  1425. {
  1426. title: 'CO(PPM)',
  1427. children: [
  1428. {
  1429. title: '最大值',
  1430. dataIndex: 'co_max',
  1431. key: 'co_max',
  1432. width: 80,
  1433. align: 'center',
  1434. },
  1435. {
  1436. title: '平均值',
  1437. dataIndex: 'co_ave',
  1438. key: 'co_ave',
  1439. width: 80,
  1440. align: 'center',
  1441. },
  1442. ],
  1443. },
  1444. {
  1445. title: 'CO₂(%)',
  1446. children: [
  1447. {
  1448. title: '最大值',
  1449. dataIndex: 'co2_max',
  1450. key: 'co2_max',
  1451. width: 80,
  1452. align: 'center',
  1453. },
  1454. {
  1455. title: '平均值',
  1456. dataIndex: 'co2_ave',
  1457. key: 'co2_ave',
  1458. width: 80,
  1459. align: 'center',
  1460. },
  1461. ],
  1462. },
  1463. {
  1464. title: 'O₂(%)',
  1465. children: [
  1466. {
  1467. title: '最大值',
  1468. dataIndex: 'o2_min',
  1469. key: 'o2_min',
  1470. width: 80,
  1471. align: 'center',
  1472. },
  1473. {
  1474. title: '平均值',
  1475. dataIndex: 'o2_ave',
  1476. key: 'o2_ave',
  1477. width: 80,
  1478. align: 'center',
  1479. },
  1480. ],
  1481. },
  1482. {
  1483. title: 'CH₄(%)',
  1484. children: [
  1485. {
  1486. title: '最大值',
  1487. dataIndex: 'ch4_max',
  1488. key: 'ch4_max',
  1489. width: 80,
  1490. align: 'center',
  1491. },
  1492. {
  1493. title: '平均值',
  1494. dataIndex: 'ch4_ave',
  1495. key: 'ch4_ave',
  1496. width: 80,
  1497. align: 'center',
  1498. },
  1499. ],
  1500. },
  1501. {
  1502. title: 'N₂(%)',
  1503. children: [
  1504. {
  1505. title: '最大值',
  1506. dataIndex: 'n2_max',
  1507. key: 'n2_max',
  1508. width: 80,
  1509. align: 'center',
  1510. },
  1511. {
  1512. title: '平均值',
  1513. dataIndex: 'n2_ave',
  1514. key: 'n2_ave',
  1515. width: 80,
  1516. align: 'center',
  1517. },
  1518. ],
  1519. },
  1520. {
  1521. title: 'C₂H₂(PPM)',
  1522. children: [
  1523. {
  1524. title: '最大值',
  1525. dataIndex: 'c2h2_max',
  1526. key: 'c2h2_max',
  1527. width: 80,
  1528. align: 'center',
  1529. },
  1530. {
  1531. title: '平均值',
  1532. dataIndex: 'c2h2_ave',
  1533. key: 'c2h2_ave',
  1534. width: 80,
  1535. align: 'center',
  1536. },
  1537. ],
  1538. },
  1539. {
  1540. title: 'C₂H₄(PPM)',
  1541. children: [
  1542. {
  1543. title: '最大值',
  1544. dataIndex: 'c2h4_max',
  1545. key: 'c2h4_max',
  1546. width: 80,
  1547. align: 'center',
  1548. },
  1549. {
  1550. title: '平均值',
  1551. dataIndex: 'c2h4_ave',
  1552. key: 'c2h4_ave',
  1553. width: 80,
  1554. align: 'center',
  1555. },
  1556. ],
  1557. },
  1558. {
  1559. title: '煤自燃阶段',
  1560. dataIndex: 'internalFireWarnLevel',
  1561. width: 100,
  1562. align: 'center',
  1563. },
  1564. {
  1565. title: '操作',
  1566. dataIndex: 'action',
  1567. width: 100,
  1568. align: 'center',
  1569. },
  1570. ];