comment.data.ts 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  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: 'gzcs',
  312. key: 'gzcs',
  313. width: 130,
  314. align: 'center',
  315. },
  316. {
  317. title: '工种',
  318. dataIndex: 'gz',
  319. key: 'gz',
  320. width: 100,
  321. align: 'center',
  322. },
  323. {
  324. title: '监测地点',
  325. dataIndex: 'jcdd',
  326. key: 'jcdd',
  327. width: 100,
  328. align: 'center',
  329. },
  330. {
  331. title: '粉尘种类',
  332. dataIndex: 'fczl',
  333. key: 'fczl',
  334. width: 80,
  335. align: 'center',
  336. },
  337. {
  338. title: '总尘(短时间监测浓度,单位:mg/m³)',
  339. align: 'center',
  340. children: [
  341. {
  342. title: '作业工序-生产',
  343. dataIndex: 'sc_zcds',
  344. key: 'sc_zcds',
  345. width: 100,
  346. align: 'center',
  347. },
  348. {
  349. title: '作业工序-检修',
  350. dataIndex: 'jx_zcds',
  351. key: 'jx_zcds',
  352. width: 100,
  353. align: 'center',
  354. },
  355. ],
  356. },
  357. {
  358. title: '呼尘(短时间监测浓度,单位:mg/m³)',
  359. align: 'center',
  360. children: [
  361. {
  362. title: '作业工序-生产',
  363. dataIndex: 'sc_hcds',
  364. key: 'sc_hcds',
  365. width: 100,
  366. align: 'center',
  367. },
  368. {
  369. title: '作业工序-检修',
  370. dataIndex: 'jx_hcds',
  371. key: 'jx_hcds',
  372. width: 100,
  373. align: 'center',
  374. },
  375. ],
  376. },
  377. {
  378. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  379. dataIndex: 'zcjqpj',
  380. key: 'zcjqpj',
  381. width: 100,
  382. align: 'center',
  383. },
  384. {
  385. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  386. dataIndex: 'hcjqpj',
  387. key: 'hcjqpj',
  388. width: 100,
  389. align: 'center',
  390. },
  391. ];
  392. export const bundleColumns: BasicColumn[] = [
  393. {
  394. title: '序号',
  395. width: 60,
  396. align: 'center',
  397. dataIndex: 'xh',
  398. key: 'xh',
  399. },
  400. {
  401. title: '测点名称',
  402. dataIndex: 'jcdd',
  403. key: 'jcdd',
  404. width: 130,
  405. align: 'center',
  406. },
  407. {
  408. title: '分析次数',
  409. dataIndex: 'fxcs',
  410. key: 'fxcs',
  411. width: 60,
  412. align: 'center',
  413. },
  414. {
  415. title: 'CO(PPM)',
  416. children: [
  417. {
  418. title: '最大值',
  419. dataIndex: 'co_max',
  420. key: 'co_max',
  421. width: 60,
  422. align: 'center',
  423. },
  424. {
  425. title: '平均值',
  426. dataIndex: 'co_ave',
  427. key: 'co_ave',
  428. width: 60,
  429. align: 'center',
  430. },
  431. ],
  432. },
  433. {
  434. title: 'CO₂(%)',
  435. children: [
  436. {
  437. title: '最大值',
  438. dataIndex: 'co2_max',
  439. key: 'co2_max',
  440. width: 60,
  441. align: 'center',
  442. },
  443. {
  444. title: '平均值',
  445. dataIndex: 'co2_ave',
  446. key: 'co2_ave',
  447. width: 60,
  448. align: 'center',
  449. },
  450. ],
  451. },
  452. {
  453. title: 'O₂(%)',
  454. children: [
  455. {
  456. title: '最小值',
  457. dataIndex: 'o2_min',
  458. key: 'o2_min',
  459. width: 60,
  460. align: 'center',
  461. },
  462. {
  463. title: '平均值',
  464. dataIndex: 'o2_ave',
  465. key: 'o2_ave',
  466. width: 60,
  467. align: 'center',
  468. },
  469. ],
  470. },
  471. {
  472. title: 'CH₄(%)',
  473. children: [
  474. {
  475. title: '最大值',
  476. dataIndex: 'ch4_max',
  477. key: 'ch4_max',
  478. width: 60,
  479. align: 'center',
  480. },
  481. {
  482. title: '平均值',
  483. dataIndex: 'ch4_ave',
  484. key: 'ch4_ave',
  485. width: 60,
  486. align: 'center',
  487. },
  488. ],
  489. },
  490. {
  491. title: 'C₂H₂(PPM)',
  492. children: [
  493. {
  494. title: '最大值',
  495. dataIndex: 'c2h2_max',
  496. key: 'c2h2_max',
  497. width: 60,
  498. align: 'center',
  499. },
  500. {
  501. title: '平均值',
  502. dataIndex: 'c2h2_ave',
  503. key: 'c2h2_ave',
  504. width: 60,
  505. align: 'center',
  506. },
  507. ],
  508. },
  509. {
  510. title: 'C₂H₄(PPM)',
  511. children: [
  512. {
  513. title: '最大值',
  514. dataIndex: 'c2h4_max',
  515. key: 'c2h4_max',
  516. width: 60,
  517. align: 'center',
  518. },
  519. {
  520. title: '平均值',
  521. dataIndex: 'c2h4_ave',
  522. key: 'c2h4_ave',
  523. width: 60,
  524. align: 'center',
  525. },
  526. ],
  527. },
  528. {
  529. title: '煤自燃阶段',
  530. dataIndex: 'internalFireWarnLevel',
  531. width: 100,
  532. align: 'center',
  533. },
  534. ];
  535. export const bundleSpycolumns: BasicColumn[] = [
  536. {
  537. title: '序号',
  538. width: 60,
  539. align: 'center',
  540. dataIndex: 'xh',
  541. key: 'xh',
  542. },
  543. {
  544. title: '采样地点',
  545. dataIndex: 'jcdd',
  546. key: 'jcdd',
  547. width: 100,
  548. align: 'center',
  549. },
  550. {
  551. title: '取样分析时间',
  552. dataIndex: 'qyfxsj',
  553. key: 'qyfxsj',
  554. width: 100,
  555. align: 'center',
  556. },
  557. {
  558. title: 'O₂(%)',
  559. dataIndex: 'o2_ave',
  560. key: 'o2_ave',
  561. width: 100,
  562. align: 'center',
  563. },
  564. {
  565. title: 'N₂(%)',
  566. dataIndex: 'n2_ave',
  567. key: 'n2_ave',
  568. width: 100,
  569. align: 'center',
  570. },
  571. {
  572. title: 'CO(%)',
  573. dataIndex: 'co_ave',
  574. key: 'co_ave',
  575. width: 100,
  576. align: 'center',
  577. },
  578. {
  579. title: 'CO₂(%)',
  580. dataIndex: 'co2_ave',
  581. key: 'co2_ave',
  582. width: 100,
  583. align: 'center',
  584. },
  585. {
  586. title: 'CH₄(%)',
  587. dataIndex: 'ch4_ave',
  588. key: 'ch4_ave',
  589. width: 100,
  590. align: 'center',
  591. },
  592. {
  593. title: 'C2H6(%)',
  594. dataIndex: 'c2h6_ave',
  595. key: 'c2h6_ave',
  596. width: 100,
  597. align: 'center',
  598. },
  599. {
  600. title: 'C₂H₄(%)',
  601. dataIndex: 'c2h4_ave',
  602. key: 'c2h4_ave',
  603. width: 100,
  604. align: 'center',
  605. },
  606. {
  607. title: 'C₂H₂(%)',
  608. dataIndex: 'c2h2_ave',
  609. key: 'c2h2_ave',
  610. width: 100,
  611. align: 'center',
  612. },
  613. {
  614. title: '总组分含量',
  615. dataIndex: 'zzfhl_ave',
  616. key: 'zzfhl_ave',
  617. width: 100,
  618. align: 'center',
  619. },
  620. {
  621. title: '煤自燃阶段',
  622. dataIndex: 'internalFireWarnLevel',
  623. width: 100,
  624. align: 'center',
  625. },
  626. ];
  627. export const ColumnsReport: BasicColumn[] = [
  628. {
  629. title: '序号',
  630. width: 60,
  631. align: 'center',
  632. customRender: ({ index }: { index: number }) => `${index + 1}`,
  633. },
  634. {
  635. title: '监测地点',
  636. dataIndex: 'jcdd',
  637. key: 'jcdd',
  638. width: 260,
  639. align: 'center',
  640. },
  641. {
  642. title: '检查次数',
  643. dataIndex: 'checkNum',
  644. key: 'checkNum',
  645. align: 'center',
  646. },
  647. {
  648. title: 'O₂(%)',
  649. dataIndex: 'o2',
  650. key: 'o2',
  651. align: 'center',
  652. },
  653. {
  654. title: 'CO(ppm)',
  655. dataIndex: 'co',
  656. key: 'co',
  657. align: 'center',
  658. },
  659. {
  660. title: 'CO₂(%)',
  661. dataIndex: 'co2',
  662. key: 'co2',
  663. align: 'center',
  664. },
  665. {
  666. title: 'CH₄(%)',
  667. dataIndex: 'ch4',
  668. key: 'ch4',
  669. align: 'center',
  670. },
  671. {
  672. title: '巡检员',
  673. dataIndex: 'checkPerson',
  674. key: 'checkPerson',
  675. align: 'center',
  676. },
  677. {
  678. title: '操作',
  679. dataIndex: 'action',
  680. width: 120,
  681. align: 'center',
  682. slots: { customRender: 'action' },
  683. },
  684. ];
  685. export const columnsGas1: BasicColumn[] = [
  686. {
  687. title: '序号',
  688. width: 60,
  689. align: 'center',
  690. customRender: ({ index }: { index: number }) => `${index + 1}`,
  691. },
  692. {
  693. title: '监测地点',
  694. dataIndex: 'jcdd',
  695. key: 'jcdd',
  696. width: 180,
  697. align: 'center',
  698. },
  699. {
  700. title: '夜班',
  701. children: [
  702. {
  703. title: 'CH₄‌(%)',
  704. dataIndex: 'ch4Night',
  705. key: 'ch4Night',
  706. align: 'center',
  707. },
  708. {
  709. title: 'CO₂‌(%)',
  710. dataIndex: 'co2Night',
  711. key: 'co2Night',
  712. align: 'center',
  713. },
  714. {
  715. title: 'CO(ppm)',
  716. dataIndex: 'coNight',
  717. key: 'coNight',
  718. align: 'center',
  719. },
  720. {
  721. title: 'O₂‌(%)',
  722. dataIndex: 'o2Night',
  723. key: 'o2Night',
  724. align: 'center',
  725. },
  726. {
  727. title: 'T(°C)',
  728. dataIndex: 'tNight',
  729. key: 'tNight',
  730. align: 'center',
  731. },
  732. ],
  733. },
  734. {
  735. title: '早班',
  736. children: [
  737. {
  738. title: 'CH₄‌(%)',
  739. dataIndex: 'ch4Early',
  740. key: 'ch4Early',
  741. align: 'center',
  742. },
  743. {
  744. title: 'CO₂‌(%)',
  745. dataIndex: 'co2Early',
  746. key: 'co2Early',
  747. align: 'center',
  748. },
  749. {
  750. title: 'CO(ppm)',
  751. dataIndex: 'coEarly',
  752. key: 'coEarly',
  753. align: 'center',
  754. },
  755. {
  756. title: 'O₂‌(%)',
  757. dataIndex: 'o2Early',
  758. key: 'o2Early',
  759. align: 'center',
  760. },
  761. {
  762. title: 'T(°C)',
  763. dataIndex: 'tEarly',
  764. key: 'tEarly',
  765. align: 'center',
  766. },
  767. ],
  768. },
  769. {
  770. title: '中班',
  771. children: [
  772. {
  773. title: 'CH₄‌(%)',
  774. dataIndex: 'ch4Noon',
  775. key: 'ch4Noon',
  776. align: 'center',
  777. },
  778. {
  779. title: 'CO₂‌(%)',
  780. dataIndex: 'co2Noon',
  781. key: 'co2Noon',
  782. align: 'center',
  783. },
  784. {
  785. title: 'CO(ppm)',
  786. dataIndex: 'coNoon',
  787. key: 'coNoon',
  788. align: 'center',
  789. },
  790. {
  791. title: 'O₂‌(%)',
  792. dataIndex: 'o2Noon',
  793. key: 'o2Noon',
  794. align: 'center',
  795. },
  796. {
  797. title: 'T(°C)',
  798. dataIndex: 'tNoon',
  799. key: 'tNoon',
  800. align: 'center',
  801. },
  802. ],
  803. },
  804. {
  805. title: '操作',
  806. dataIndex: 'action',
  807. width: 120,
  808. align: 'center',
  809. slots: { customRender: 'action' },
  810. },
  811. ];
  812. export const columnsGas2: BasicColumn[] = [
  813. {
  814. title: '序号',
  815. width: 60,
  816. align: 'center',
  817. customRender: ({ index }: { index: number }) => `${index + 1}`,
  818. },
  819. {
  820. title: '监测地点',
  821. dataIndex: 'jcdd',
  822. key: 'jcdd',
  823. width: 130,
  824. align: 'center',
  825. },
  826. {
  827. title: '煤层',
  828. dataIndex: 'mc',
  829. width: 80,
  830. key: 'mc',
  831. align: 'center',
  832. },
  833. {
  834. title: '夜班',
  835. children: [
  836. {
  837. title: 'CH₄‌(%)',
  838. dataIndex: 'ch4Night',
  839. key: 'ch4Night',
  840. align: 'center',
  841. },
  842. {
  843. title: 'CO₂‌(%)',
  844. dataIndex: 'co2Night',
  845. key: 'co2Night',
  846. align: 'center',
  847. },
  848. {
  849. title: 'CO(ppm)',
  850. dataIndex: 'coNight',
  851. key: 'coNight',
  852. width: 80,
  853. align: 'center',
  854. },
  855. {
  856. title: 'O₂‌(%)',
  857. dataIndex: 'o2Night',
  858. key: 'o2Night',
  859. align: 'center',
  860. },
  861. {
  862. title: 'T(°C)',
  863. dataIndex: 'tNight',
  864. key: 'tNight',
  865. align: 'center',
  866. },
  867. {
  868. title: '巡检员',
  869. dataIndex: 'checkPersonNight',
  870. key: 'checkPersonNight',
  871. align: 'center',
  872. },
  873. ],
  874. },
  875. {
  876. title: '早班',
  877. children: [
  878. {
  879. title: 'CH₄‌(%)',
  880. dataIndex: 'ch4Early',
  881. key: 'ch4Early',
  882. align: 'center',
  883. },
  884. {
  885. title: 'CO₂‌(%)',
  886. dataIndex: 'co2Early',
  887. key: 'co2Early',
  888. align: 'center',
  889. },
  890. {
  891. title: 'CO(ppm)',
  892. dataIndex: 'coEarly',
  893. key: 'coEarly',
  894. width: 80,
  895. align: 'center',
  896. },
  897. {
  898. title: 'O₂‌(%)',
  899. dataIndex: 'o2Early',
  900. key: 'o2Early',
  901. align: 'center',
  902. },
  903. {
  904. title: 'T(°C)',
  905. dataIndex: 'tEarly',
  906. key: 'tEarly',
  907. align: 'center',
  908. },
  909. {
  910. title: '巡检员',
  911. dataIndex: 'checkPersonEarly',
  912. key: 'checkPersonEarly',
  913. align: 'center',
  914. },
  915. ],
  916. },
  917. {
  918. title: '中班',
  919. children: [
  920. {
  921. title: 'CH₄‌(%)',
  922. dataIndex: 'ch4Noon',
  923. key: 'ch4Noon',
  924. align: 'center',
  925. },
  926. {
  927. title: 'CO₂‌(%)',
  928. dataIndex: 'co2Noon',
  929. key: 'co2Noon',
  930. align: 'center',
  931. },
  932. {
  933. title: 'CO(ppm)',
  934. dataIndex: 'coNoon',
  935. key: 'coNoon',
  936. width: 80,
  937. align: 'center',
  938. },
  939. {
  940. title: 'O₂‌(%)',
  941. dataIndex: 'o2Noon',
  942. key: 'o2Noon',
  943. align: 'center',
  944. },
  945. {
  946. title: 'T(°C)',
  947. dataIndex: 'tNoon',
  948. key: 'tNoon',
  949. align: 'center',
  950. },
  951. {
  952. title: '巡检员',
  953. dataIndex: 'checkPersonNoon',
  954. key: 'checkPersonNoon',
  955. align: 'center',
  956. },
  957. ],
  958. },
  959. {
  960. title: '操作',
  961. dataIndex: 'action',
  962. width: 120,
  963. align: 'center',
  964. slots: { customRender: 'action' },
  965. },
  966. ];