comment.data.ts 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958
  1. import { BasicColumn } from '/@/components/Table';
  2. export const gaspatrolColumnsTwo: BasicColumn[] = [
  3. {
  4. title: '序号',
  5. width: 60,
  6. align: 'center',
  7. customRender: ({ index }: { index: number }) => `${index + 1}`,
  8. },
  9. {
  10. title: '地点',
  11. dataIndex: 'strInstallPos',
  12. key: 'strInstallPos',
  13. align: 'center',
  14. },
  15. {
  16. title: '第一次',
  17. children: [
  18. {
  19. title: 'CH4(%)',
  20. dataIndex: 'ch4One',
  21. key: 'ch4One',
  22. align: 'center',
  23. },
  24. {
  25. title: 'CO2(%)',
  26. dataIndex: 'co2One',
  27. key: 'co2One',
  28. align: 'center',
  29. },
  30. {
  31. title: 'CO(ppm)',
  32. dataIndex: 'coOne',
  33. key: 'coOne',
  34. align: 'center',
  35. },
  36. {
  37. title: 'O2(%)',
  38. dataIndex: 'o2One',
  39. key: 'o2One',
  40. align: 'center',
  41. },
  42. {
  43. title: '温度(°C)',
  44. dataIndex: 'tOne',
  45. key: 'tOne',
  46. align: 'center',
  47. },
  48. {
  49. title: '时间',
  50. dataIndex: 'timeOne',
  51. key: 'timeOne',
  52. align: 'center',
  53. },
  54. ],
  55. },
  56. {
  57. title: '第二次',
  58. children: [
  59. {
  60. title: 'CH4(%)',
  61. dataIndex: 'ch4Two',
  62. key: 'ch4Two',
  63. align: 'center',
  64. },
  65. {
  66. title: 'CO2(%)',
  67. dataIndex: 'co2Two',
  68. key: 'co2Two',
  69. align: 'center',
  70. },
  71. {
  72. title: 'CO(ppm)',
  73. dataIndex: 'coTwo',
  74. key: 'coTwo',
  75. align: 'center',
  76. },
  77. {
  78. title: 'O2(%)',
  79. dataIndex: 'o2Two',
  80. key: 'o2Two',
  81. align: 'center',
  82. },
  83. {
  84. title: '温度(°C)',
  85. dataIndex: 'tTwo',
  86. key: 'tTwo',
  87. align: 'center',
  88. },
  89. {
  90. title: '时间',
  91. dataIndex: 'timeTwo',
  92. key: 'timeTwo',
  93. align: 'center',
  94. },
  95. ],
  96. },
  97. {
  98. title: '瓦检员',
  99. dataIndex: 'checkPerson',
  100. key: 'checkPerson',
  101. align: 'center',
  102. },
  103. {
  104. title: '操作',
  105. dataIndex: 'action',
  106. width: 120,
  107. align: 'center',
  108. slots: { customRender: 'action' },
  109. },
  110. ];
  111. export const gaspatrolColumnsOne: BasicColumn[] = [
  112. {
  113. title: '序号',
  114. width: 60,
  115. align: 'center',
  116. customRender: ({ index }: { index: number }) => `${index + 1}`,
  117. },
  118. {
  119. title: '地点',
  120. dataIndex: 'strInstallPos',
  121. key: 'strInstallPos',
  122. align: 'center',
  123. },
  124. {
  125. title: 'CH4(%)',
  126. dataIndex: 'ch4One',
  127. key: 'ch4One',
  128. align: 'center',
  129. },
  130. {
  131. title: 'CO2(%)',
  132. dataIndex: 'co2One',
  133. key: 'co2One',
  134. align: 'center',
  135. },
  136. {
  137. title: 'CO(ppm)',
  138. dataIndex: 'coOne',
  139. key: 'coOne',
  140. align: 'center',
  141. },
  142. {
  143. title: 'O2(%)',
  144. dataIndex: 'o2One',
  145. key: 'o2One',
  146. align: 'center',
  147. },
  148. {
  149. title: '温度(°C)',
  150. dataIndex: 'tOne',
  151. key: 'tOne',
  152. align: 'center',
  153. },
  154. {
  155. title: '时间',
  156. dataIndex: 'timeOne',
  157. key: 'timeOne',
  158. align: 'center',
  159. },
  160. {
  161. title: '瓦检员',
  162. dataIndex: 'checkPerson',
  163. key: 'checkPerson',
  164. align: 'center',
  165. },
  166. {
  167. title: '操作',
  168. dataIndex: 'action',
  169. width: 200,
  170. align: 'center',
  171. slots: { customRender: 'action' },
  172. },
  173. ];
  174. export const dsutColumns: BasicColumn[] = [
  175. {
  176. title: '序号',
  177. width: 60,
  178. align: 'center',
  179. customRender: ({ index }: { index: number }) => `${index + 1}`,
  180. },
  181. {
  182. title: '工作场所',
  183. dataIndex: 'gzcs',
  184. key: 'gzcs',
  185. width: 130,
  186. align: 'center',
  187. },
  188. {
  189. title: '工种',
  190. dataIndex: 'gz',
  191. key: 'gz',
  192. width: 100,
  193. align: 'center',
  194. },
  195. {
  196. title: '监测地点',
  197. dataIndex: 'jcdd',
  198. key: 'jcdd',
  199. width: 100,
  200. align: 'center',
  201. },
  202. {
  203. title: '粉尘种类',
  204. dataIndex: 'fczl',
  205. key: 'fczl',
  206. width: 80,
  207. align: 'center',
  208. },
  209. {
  210. title: '总尘(短时间监测浓度,单位:mg/m³)',
  211. align: 'center',
  212. children: [
  213. {
  214. title: '作业工序-生产',
  215. dataIndex: 'sc_zcds',
  216. key: 'sc_zcds',
  217. width: 100,
  218. align: 'center',
  219. },
  220. {
  221. title: '作业工序-检修',
  222. dataIndex: 'jx_zcds',
  223. key: 'jx_zcds',
  224. width: 100,
  225. align: 'center',
  226. },
  227. ],
  228. },
  229. {
  230. title: '呼尘(短时间监测浓度,单位:mg/m³)',
  231. align: 'center',
  232. children: [
  233. {
  234. title: '作业工序-生产',
  235. dataIndex: 'sc_hcds',
  236. key: 'sc_hcds',
  237. width: 100,
  238. align: 'center',
  239. },
  240. {
  241. title: '作业工序-检修',
  242. dataIndex: 'jx_hcds',
  243. key: 'jx_hcds',
  244. width: 100,
  245. align: 'center',
  246. },
  247. ],
  248. },
  249. {
  250. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  251. dataIndex: 'zcjqpj',
  252. key: 'zcjqpj',
  253. width: 100,
  254. align: 'center',
  255. },
  256. {
  257. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  258. dataIndex: 'hcjqpj',
  259. key: 'hcjqpj',
  260. width: 100,
  261. align: 'center',
  262. },
  263. {
  264. title: '总尘容许浓度(mg/m³)',
  265. children: [
  266. {
  267. title: '短时间监测浓度',
  268. dataIndex: 'zcrxd_ds',
  269. key: 'zcrxd_ds',
  270. width: 100,
  271. align: 'center',
  272. },
  273. {
  274. title: '时间加权平均浓度',
  275. dataIndex: 'zcrxd_jqpj',
  276. key: 'zcrxd_jqpj',
  277. width: 100,
  278. align: 'center',
  279. },
  280. ],
  281. },
  282. {
  283. title: '呼尘容许浓度(mg/m³)',
  284. children: [
  285. {
  286. title: '短时间监测浓度',
  287. dataIndex: 'hcrxd_ds',
  288. key: 'hcrxd_ds',
  289. width: 100,
  290. align: 'center',
  291. },
  292. {
  293. title: '时间加权平均浓度',
  294. dataIndex: 'hcrxd_jqpj',
  295. key: 'hcrxd_jqpj',
  296. width: 100,
  297. align: 'center',
  298. },
  299. ],
  300. },
  301. ];
  302. export const dsutDltColumns: BasicColumn[] = [
  303. {
  304. title: '序号',
  305. width: 60,
  306. align: 'center',
  307. customRender: ({ index }: { index: number }) => `${index + 1}`,
  308. },
  309. {
  310. title: '监测地点',
  311. dataIndex: 'jcdd',
  312. key: 'jcdd',
  313. width: 100,
  314. align: 'center',
  315. },
  316. {
  317. title: '粉尘种类',
  318. dataIndex: 'fczl',
  319. key: 'fczl',
  320. width: 80,
  321. align: 'center',
  322. },
  323. {
  324. title: '总尘(短时间监测浓度,单位:mg/m³)',
  325. align: 'center',
  326. children: [
  327. {
  328. title: '作业工序-生产',
  329. dataIndex: 'sc_zcds',
  330. key: 'sc_zcds',
  331. width: 100,
  332. align: 'center',
  333. },
  334. {
  335. title: '作业工序-检修',
  336. dataIndex: 'jx_zcds',
  337. key: 'jx_zcds',
  338. width: 100,
  339. align: 'center',
  340. },
  341. ],
  342. },
  343. {
  344. title: '呼尘(短时间监测浓度,单位:mg/m³)',
  345. align: 'center',
  346. children: [
  347. {
  348. title: '作业工序-生产',
  349. dataIndex: 'sc_hcds',
  350. key: 'sc_hcds',
  351. width: 100,
  352. align: 'center',
  353. },
  354. {
  355. title: '作业工序-检修',
  356. dataIndex: 'jx_hcds',
  357. key: 'jx_hcds',
  358. width: 100,
  359. align: 'center',
  360. },
  361. ],
  362. },
  363. {
  364. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  365. dataIndex: 'zcjqpj',
  366. key: 'zcjqpj',
  367. width: 100,
  368. align: 'center',
  369. },
  370. {
  371. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  372. dataIndex: 'hcjqpj',
  373. key: 'hcjqpj',
  374. width: 100,
  375. align: 'center',
  376. },
  377. ];
  378. export const bundleColumns: BasicColumn[] = [
  379. {
  380. title: '序号',
  381. width: 60,
  382. align: 'center',
  383. dataIndex: 'xh',
  384. key: 'xh',
  385. },
  386. {
  387. title: '测点名称',
  388. dataIndex: 'jcdd',
  389. key: 'jcdd',
  390. width: 130,
  391. align: 'center',
  392. },
  393. {
  394. title: '分析次数',
  395. dataIndex: 'fxcs',
  396. key: 'fxcs',
  397. width: 60,
  398. align: 'center',
  399. },
  400. {
  401. title: 'CO(PPM)',
  402. children: [
  403. {
  404. title: '最大值',
  405. dataIndex: 'co_max',
  406. key: 'co_max',
  407. width: 60,
  408. align: 'center',
  409. },
  410. {
  411. title: '平均值',
  412. dataIndex: 'co_ave',
  413. key: 'co_ave',
  414. width: 60,
  415. align: 'center',
  416. },
  417. ],
  418. },
  419. {
  420. title: 'CO₂(%)',
  421. children: [
  422. {
  423. title: '最大值',
  424. dataIndex: 'co2_max',
  425. key: 'co2_max',
  426. width: 60,
  427. align: 'center',
  428. },
  429. {
  430. title: '平均值',
  431. dataIndex: 'co2_ave',
  432. key: 'co2_ave',
  433. width: 60,
  434. align: 'center',
  435. },
  436. ],
  437. },
  438. {
  439. title: 'O₂(%)',
  440. children: [
  441. {
  442. title: '最小值',
  443. dataIndex: 'o2_min',
  444. key: 'o2_min',
  445. width: 60,
  446. align: 'center',
  447. },
  448. {
  449. title: '平均值',
  450. dataIndex: 'o2_ave',
  451. key: 'o2_ave',
  452. width: 60,
  453. align: 'center',
  454. },
  455. ],
  456. },
  457. {
  458. title: 'CH₄(%)',
  459. children: [
  460. {
  461. title: '最大值',
  462. dataIndex: 'ch4_max',
  463. key: 'ch4_max',
  464. width: 60,
  465. align: 'center',
  466. },
  467. {
  468. title: '平均值',
  469. dataIndex: 'ch4_ave',
  470. key: 'ch4_ave',
  471. width: 60,
  472. align: 'center',
  473. },
  474. ],
  475. },
  476. {
  477. title: 'C₂H₂(PPM)',
  478. children: [
  479. {
  480. title: '最大值',
  481. dataIndex: 'c2h2_max',
  482. key: 'c2h2_max',
  483. width: 60,
  484. align: 'center',
  485. },
  486. {
  487. title: '平均值',
  488. dataIndex: 'c2h2_ave',
  489. key: 'c2h2_ave',
  490. width: 60,
  491. align: 'center',
  492. },
  493. ],
  494. },
  495. {
  496. title: 'C₂H₄(PPM)',
  497. children: [
  498. {
  499. title: '最大值',
  500. dataIndex: 'c2h4_max',
  501. key: 'c2h4_max',
  502. width: 60,
  503. align: 'center',
  504. },
  505. {
  506. title: '平均值',
  507. dataIndex: 'c2h4_ave',
  508. key: 'c2h4_ave',
  509. width: 60,
  510. align: 'center',
  511. },
  512. ],
  513. },
  514. {
  515. title: '煤自燃阶段',
  516. dataIndex: 'internalFireWarnLevel',
  517. width: 100,
  518. align: 'center',
  519. },
  520. ];
  521. export const bundleSpycolumns: BasicColumn[] = [
  522. {
  523. title: '序号',
  524. width: 60,
  525. align: 'center',
  526. dataIndex: 'xh',
  527. key: 'xh',
  528. },
  529. {
  530. title: '采样地点',
  531. dataIndex: 'jcdd',
  532. key: 'jcdd',
  533. width: 100,
  534. align: 'center',
  535. },
  536. {
  537. title: '取样分析时间',
  538. dataIndex: 'qyfxsj',
  539. key: 'qyfxsj',
  540. width: 100,
  541. align: 'center',
  542. },
  543. {
  544. title: 'O₂(%)',
  545. dataIndex: 'o2_ave',
  546. key: 'o2_ave',
  547. width: 100,
  548. align: 'center',
  549. },
  550. {
  551. title: 'N₂(%)',
  552. dataIndex: 'n2_ave',
  553. key: 'n2_ave',
  554. width: 100,
  555. align: 'center',
  556. },
  557. {
  558. title: 'CO(%)',
  559. dataIndex: 'co_ave',
  560. key: 'co_ave',
  561. width: 100,
  562. align: 'center',
  563. },
  564. {
  565. title: 'CO₂(%)',
  566. dataIndex: 'co2_ave',
  567. key: 'co2_ave',
  568. width: 100,
  569. align: 'center',
  570. },
  571. {
  572. title: 'CH₄(%)',
  573. dataIndex: 'ch4_ave',
  574. key: 'ch4_ave',
  575. width: 100,
  576. align: 'center',
  577. },
  578. {
  579. title: 'C2H6(%)',
  580. dataIndex: 'c2h6_ave',
  581. key: 'c2h6_ave',
  582. width: 100,
  583. align: 'center',
  584. },
  585. {
  586. title: 'C₂H₄(%)',
  587. dataIndex: 'c2h4_ave',
  588. key: 'c2h4_ave',
  589. width: 100,
  590. align: 'center',
  591. },
  592. {
  593. title: 'C₂H₂(%)',
  594. dataIndex: 'c2h2_ave',
  595. key: 'c2h2_ave',
  596. width: 100,
  597. align: 'center',
  598. },
  599. {
  600. title: '总组分含量',
  601. dataIndex: 'zzfhl_ave',
  602. key: 'zzfhl_ave',
  603. width: 100,
  604. align: 'center',
  605. },
  606. {
  607. title: '煤自燃阶段',
  608. dataIndex: 'internalFireWarnLevel',
  609. width: 100,
  610. align: 'center',
  611. },
  612. ];
  613. export const ColumnsReport: BasicColumn[] = [
  614. {
  615. title: '序号',
  616. width: 60,
  617. align: 'center',
  618. customRender: ({ index }: { index: number }) => `${index + 1}`,
  619. },
  620. {
  621. title: '监测地点',
  622. dataIndex: 'jcdd',
  623. key: 'jcdd',
  624. width: 260,
  625. align: 'center',
  626. },
  627. {
  628. title: '检查次数',
  629. dataIndex: 'checkNum',
  630. key: 'checkNum',
  631. align: 'center',
  632. },
  633. {
  634. title: 'O₂(%)',
  635. dataIndex: 'o2',
  636. key: 'o2',
  637. align: 'center',
  638. },
  639. {
  640. title: 'CO(ppm)',
  641. dataIndex: 'co',
  642. key: 'co',
  643. align: 'center',
  644. },
  645. {
  646. title: 'CO₂(%)',
  647. dataIndex: 'co2',
  648. key: 'co2',
  649. align: 'center',
  650. },
  651. {
  652. title: 'CH₄(%)',
  653. dataIndex: 'ch4',
  654. key: 'ch4',
  655. align: 'center',
  656. },
  657. {
  658. title: '巡检员',
  659. dataIndex: 'checkPerson',
  660. key: 'checkPerson',
  661. align: 'center',
  662. },
  663. {
  664. title: '操作',
  665. dataIndex: 'action',
  666. width: 120,
  667. align: 'center',
  668. slots: { customRender: 'action' },
  669. },
  670. ];
  671. export const columnsGas1: BasicColumn[] = [
  672. {
  673. title: '序号',
  674. width: 60,
  675. align: 'center',
  676. customRender: ({ index }: { index: number }) => `${index + 1}`,
  677. },
  678. {
  679. title: '监测地点',
  680. dataIndex: 'jcdd',
  681. key: 'jcdd',
  682. width: 180,
  683. align: 'center',
  684. },
  685. {
  686. title: '夜班',
  687. children: [
  688. {
  689. title: 'CH₄‌(%)',
  690. dataIndex: 'ch4Night',
  691. key: 'ch4Night',
  692. align: 'center',
  693. },
  694. {
  695. title: 'CO₂‌(%)',
  696. dataIndex: 'co2Night',
  697. key: 'co2Night',
  698. align: 'center',
  699. },
  700. {
  701. title: 'CO(ppm)',
  702. dataIndex: 'coNight',
  703. key: 'coNight',
  704. align: 'center',
  705. },
  706. {
  707. title: 'O₂‌(%)',
  708. dataIndex: 'o2Night',
  709. key: 'o2Night',
  710. align: 'center',
  711. },
  712. {
  713. title: 'T(°C)',
  714. dataIndex: 'tNight',
  715. key: 'tNight',
  716. align: 'center',
  717. },
  718. ],
  719. },
  720. {
  721. title: '早班',
  722. children: [
  723. {
  724. title: 'CH₄‌(%)',
  725. dataIndex: 'ch4Early',
  726. key: 'ch4Early',
  727. align: 'center',
  728. },
  729. {
  730. title: 'CO₂‌(%)',
  731. dataIndex: 'co2Early',
  732. key: 'co2Early',
  733. align: 'center',
  734. },
  735. {
  736. title: 'CO(ppm)',
  737. dataIndex: 'coEarly',
  738. key: 'coEarly',
  739. align: 'center',
  740. },
  741. {
  742. title: 'O₂‌(%)',
  743. dataIndex: 'o2Early',
  744. key: 'o2Early',
  745. align: 'center',
  746. },
  747. {
  748. title: 'T(°C)',
  749. dataIndex: 'tEarly',
  750. key: 'tEarly',
  751. align: 'center',
  752. },
  753. ],
  754. },
  755. {
  756. title: '中班',
  757. children: [
  758. {
  759. title: 'CH₄‌(%)',
  760. dataIndex: 'ch4Noon',
  761. key: 'ch4Noon',
  762. align: 'center',
  763. },
  764. {
  765. title: 'CO₂‌(%)',
  766. dataIndex: 'co2Noon',
  767. key: 'co2Noon',
  768. align: 'center',
  769. },
  770. {
  771. title: 'CO(ppm)',
  772. dataIndex: 'coNoon',
  773. key: 'coNoon',
  774. align: 'center',
  775. },
  776. {
  777. title: 'O₂‌(%)',
  778. dataIndex: 'o2Noon',
  779. key: 'o2Noon',
  780. align: 'center',
  781. },
  782. {
  783. title: 'T(°C)',
  784. dataIndex: 'tNoon',
  785. key: 'tNoon',
  786. align: 'center',
  787. },
  788. ],
  789. },
  790. {
  791. title: '操作',
  792. dataIndex: 'action',
  793. width: 120,
  794. align: 'center',
  795. slots: { customRender: 'action' },
  796. },
  797. ];
  798. export const columnsGas2: BasicColumn[] = [
  799. {
  800. title: '序号',
  801. width: 60,
  802. align: 'center',
  803. customRender: ({ index }: { index: number }) => `${index + 1}`,
  804. },
  805. {
  806. title: '监测地点',
  807. dataIndex: 'jcdd',
  808. key: 'jcdd',
  809. width: 130,
  810. align: 'center',
  811. },
  812. {
  813. title: '煤层',
  814. dataIndex: 'mc',
  815. width: 80,
  816. key: 'mc',
  817. align: 'center',
  818. },
  819. {
  820. title: '夜班',
  821. children: [
  822. {
  823. title: 'CH₄‌(%)',
  824. dataIndex: 'ch4Night',
  825. key: 'ch4Night',
  826. align: 'center',
  827. },
  828. {
  829. title: 'CO₂‌(%)',
  830. dataIndex: 'co2Night',
  831. key: 'co2Night',
  832. align: 'center',
  833. },
  834. {
  835. title: 'CO(ppm)',
  836. dataIndex: 'coNight',
  837. key: 'coNight',
  838. width: 80,
  839. align: 'center',
  840. },
  841. {
  842. title: 'O₂‌(%)',
  843. dataIndex: 'o2Night',
  844. key: 'o2Night',
  845. align: 'center',
  846. },
  847. {
  848. title: 'T(°C)',
  849. dataIndex: 'tNight',
  850. key: 'tNight',
  851. align: 'center',
  852. },
  853. {
  854. title: '巡检员',
  855. dataIndex: 'checkPersonNight',
  856. key: 'checkPersonNight',
  857. align: 'center',
  858. },
  859. ],
  860. },
  861. {
  862. title: '早班',
  863. children: [
  864. {
  865. title: 'CH₄‌(%)',
  866. dataIndex: 'ch4Early',
  867. key: 'ch4Early',
  868. align: 'center',
  869. },
  870. {
  871. title: 'CO₂‌(%)',
  872. dataIndex: 'co2Early',
  873. key: 'co2Early',
  874. align: 'center',
  875. },
  876. {
  877. title: 'CO(ppm)',
  878. dataIndex: 'coEarly',
  879. key: 'coEarly',
  880. width: 80,
  881. align: 'center',
  882. },
  883. {
  884. title: 'O₂‌(%)',
  885. dataIndex: 'o2Early',
  886. key: 'o2Early',
  887. align: 'center',
  888. },
  889. {
  890. title: 'T(°C)',
  891. dataIndex: 'tEarly',
  892. key: 'tEarly',
  893. align: 'center',
  894. },
  895. {
  896. title: '巡检员',
  897. dataIndex: 'checkPersonEarly',
  898. key: 'checkPersonEarly',
  899. align: 'center',
  900. },
  901. ],
  902. },
  903. {
  904. title: '中班',
  905. children: [
  906. {
  907. title: 'CH₄‌(%)',
  908. dataIndex: 'ch4Noon',
  909. key: 'ch4Noon',
  910. align: 'center',
  911. },
  912. {
  913. title: 'CO₂‌(%)',
  914. dataIndex: 'co2Noon',
  915. key: 'co2Noon',
  916. align: 'center',
  917. },
  918. {
  919. title: 'CO(ppm)',
  920. dataIndex: 'coNoon',
  921. key: 'coNoon',
  922. width: 80,
  923. align: 'center',
  924. },
  925. {
  926. title: 'O₂‌(%)',
  927. dataIndex: 'o2Noon',
  928. key: 'o2Noon',
  929. align: 'center',
  930. },
  931. {
  932. title: 'T(°C)',
  933. dataIndex: 'tNoon',
  934. key: 'tNoon',
  935. align: 'center',
  936. },
  937. {
  938. title: '巡检员',
  939. dataIndex: 'checkPersonNoon',
  940. key: 'checkPersonNoon',
  941. align: 'center',
  942. },
  943. ],
  944. },
  945. {
  946. title: '操作',
  947. dataIndex: 'action',
  948. width: 120,
  949. align: 'center',
  950. slots: { customRender: 'action' },
  951. },
  952. ];