comment.data.ts 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233
  1. import { BasicColumn } from '/@/components/Table';
  2. //传感器监测-预警分析
  3. export const analysisColumns: BasicColumn[] = [
  4. {
  5. title: '序号',
  6. width: 60,
  7. align: 'center',
  8. customRender: ({ index }: { index: number }) => `${index + 1}`,
  9. },
  10. {
  11. title: '地点',
  12. dataIndex: 'sensorPosition',
  13. key: 'sensorPosition',
  14. align: 'center',
  15. },
  16. {
  17. title: '设备类型',
  18. dataIndex: 'exceptionType_str',
  19. key: 'exceptionType_str',
  20. align: 'center',
  21. },
  22. {
  23. title: '报警类型',
  24. dataIndex: 'sensorType',
  25. key: 'sensorType',
  26. align: 'center',
  27. },
  28. {
  29. title: '开始时间',
  30. dataIndex: 'exceptionStartTime',
  31. key: 'exceptionStartTime',
  32. align: 'center',
  33. },
  34. {
  35. title: '结束时间',
  36. dataIndex: 'exceptionEndTime',
  37. key: 'exceptionEndTime',
  38. align: 'center',
  39. },
  40. ];
  41. export const gaspatrolColumnsTwo: BasicColumn[] = [
  42. {
  43. title: '序号',
  44. width: 60,
  45. align: 'center',
  46. customRender: ({ index }: { index: number }) => `${index + 1}`,
  47. },
  48. {
  49. title: '地点',
  50. dataIndex: 'strInstallPos',
  51. key: 'strInstallPos',
  52. align: 'center',
  53. },
  54. {
  55. title: '第一次',
  56. children: [
  57. {
  58. title: 'CH4(%)',
  59. dataIndex: 'ch4One',
  60. key: 'ch4One',
  61. align: 'center',
  62. },
  63. {
  64. title: 'CO2(%)',
  65. dataIndex: 'co2One',
  66. key: 'co2One',
  67. align: 'center',
  68. },
  69. {
  70. title: 'CO(ppm)',
  71. dataIndex: 'coOne',
  72. key: 'coOne',
  73. align: 'center',
  74. },
  75. {
  76. title: 'O2(%)',
  77. dataIndex: 'o2One',
  78. key: 'o2One',
  79. align: 'center',
  80. },
  81. {
  82. title: '温度(°C)',
  83. dataIndex: 'tOne',
  84. key: 'tOne',
  85. align: 'center',
  86. },
  87. {
  88. title: '时间',
  89. dataIndex: 'timeOne',
  90. key: 'timeOne',
  91. align: 'center',
  92. },
  93. ],
  94. },
  95. {
  96. title: '第二次',
  97. children: [
  98. {
  99. title: 'CH4(%)',
  100. dataIndex: 'ch4Two',
  101. key: 'ch4Two',
  102. align: 'center',
  103. },
  104. {
  105. title: 'CO2(%)',
  106. dataIndex: 'co2Two',
  107. key: 'co2Two',
  108. align: 'center',
  109. },
  110. {
  111. title: 'CO(ppm)',
  112. dataIndex: 'coTwo',
  113. key: 'coTwo',
  114. align: 'center',
  115. },
  116. {
  117. title: 'O2(%)',
  118. dataIndex: 'o2Two',
  119. key: 'o2Two',
  120. align: 'center',
  121. },
  122. {
  123. title: '温度(°C)',
  124. dataIndex: 'tTwo',
  125. key: 'tTwo',
  126. align: 'center',
  127. },
  128. {
  129. title: '时间',
  130. dataIndex: 'timeTwo',
  131. key: 'timeTwo',
  132. align: 'center',
  133. },
  134. ],
  135. },
  136. {
  137. title: '瓦检员',
  138. dataIndex: 'checkPerson',
  139. key: 'checkPerson',
  140. align: 'center',
  141. },
  142. {
  143. title: '操作',
  144. dataIndex: 'action',
  145. width: 120,
  146. align: 'center',
  147. slots: { customRender: 'action' },
  148. },
  149. ];
  150. export const gaspatrolColumnsOne: BasicColumn[] = [
  151. {
  152. title: '序号',
  153. width: 60,
  154. align: 'center',
  155. customRender: ({ index }: { index: number }) => `${index + 1}`,
  156. },
  157. {
  158. title: '地点',
  159. dataIndex: 'strInstallPos',
  160. key: 'strInstallPos',
  161. align: 'center',
  162. },
  163. {
  164. title: 'CH4(%)',
  165. dataIndex: 'ch4One',
  166. key: 'ch4One',
  167. align: 'center',
  168. },
  169. {
  170. title: 'CO2(%)',
  171. dataIndex: 'co2One',
  172. key: 'co2One',
  173. align: 'center',
  174. },
  175. {
  176. title: 'CO(ppm)',
  177. dataIndex: 'coOne',
  178. key: 'coOne',
  179. align: 'center',
  180. },
  181. {
  182. title: 'O2(%)',
  183. dataIndex: 'o2One',
  184. key: 'o2One',
  185. align: 'center',
  186. },
  187. {
  188. title: '温度(°C)',
  189. dataIndex: 'tOne',
  190. key: 'tOne',
  191. align: 'center',
  192. },
  193. {
  194. title: '时间',
  195. dataIndex: 'timeOne',
  196. key: 'timeOne',
  197. align: 'center',
  198. },
  199. {
  200. title: '瓦检员',
  201. dataIndex: 'checkPerson',
  202. key: 'checkPerson',
  203. align: 'center',
  204. },
  205. {
  206. title: '操作',
  207. dataIndex: 'action',
  208. width: 200,
  209. align: 'center',
  210. slots: { customRender: 'action' },
  211. },
  212. ];
  213. //设备分站
  214. export const stationColumns: BasicColumn[] = [
  215. {
  216. title: '序号',
  217. width: 60,
  218. align: 'center',
  219. customRender: ({ index }: { index: number }) => `${index + 1}`,
  220. },
  221. {
  222. title: '安装位置',
  223. dataIndex: 'strinstallpos',
  224. key: 'strinstallpos',
  225. align: 'center',
  226. },
  227. {
  228. title: 'Ip地址',
  229. dataIndex: 'strip',
  230. key: 'strip',
  231. align: 'center',
  232. },
  233. {
  234. title: '供电模式',
  235. dataIndex: 'gdmsC',
  236. key: 'gdmsC',
  237. align: 'center',
  238. },
  239. {
  240. title: '电池容量(%)',
  241. dataIndex: 'dcrl',
  242. key: 'dcrl',
  243. align: 'center',
  244. },
  245. // {
  246. // title: '启用状态',
  247. // dataIndex: 'linkId',
  248. // key: 'linkId',
  249. // align: 'center',
  250. // },
  251. {
  252. title: '通讯状态',
  253. dataIndex: 'linkstatusC',
  254. key: 'linkstatusC',
  255. align: 'center',
  256. },
  257. {
  258. title: '操作',
  259. dataIndex: 'action',
  260. width: 200,
  261. align: 'center',
  262. slots: { customRender: 'action' },
  263. },
  264. ];
  265. export const dsutColumns: BasicColumn[] = [
  266. {
  267. title: '序号',
  268. width: 60,
  269. align: 'center',
  270. customRender: ({ index }: { index: number }) => `${index + 1}`,
  271. },
  272. {
  273. title: '工作场所',
  274. dataIndex: 'gzcs',
  275. key: 'gzcs',
  276. width: 130,
  277. align: 'center',
  278. },
  279. {
  280. title: '工种',
  281. dataIndex: 'gz',
  282. key: 'gz',
  283. width: 100,
  284. align: 'center',
  285. },
  286. {
  287. title: '监测地点',
  288. dataIndex: 'jcdd',
  289. key: 'jcdd',
  290. width: 100,
  291. align: 'center',
  292. },
  293. {
  294. title: '粉尘种类',
  295. dataIndex: 'fczl',
  296. key: 'fczl',
  297. width: 80,
  298. align: 'center',
  299. },
  300. {
  301. title: '总尘(短时间监测浓度,单位:mg/m³)',
  302. align: 'center',
  303. children: [
  304. {
  305. title: '作业工序-生产',
  306. dataIndex: 'sc_zcds',
  307. key: 'sc_zcds',
  308. width: 100,
  309. align: 'center',
  310. },
  311. {
  312. title: '作业工序-检修',
  313. dataIndex: 'jx_zcds',
  314. key: 'jx_zcds',
  315. width: 100,
  316. align: 'center',
  317. },
  318. ],
  319. },
  320. {
  321. title: '呼尘(短时间监测浓度,单位:mg/m³)',
  322. align: 'center',
  323. children: [
  324. {
  325. title: '作业工序-生产',
  326. dataIndex: 'sc_hcds',
  327. key: 'sc_hcds',
  328. width: 100,
  329. align: 'center',
  330. },
  331. {
  332. title: '作业工序-检修',
  333. dataIndex: 'jx_hcds',
  334. key: 'jx_hcds',
  335. width: 100,
  336. align: 'center',
  337. },
  338. ],
  339. },
  340. {
  341. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  342. dataIndex: 'zcjqpj',
  343. key: 'zcjqpj',
  344. width: 100,
  345. align: 'center',
  346. },
  347. {
  348. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  349. dataIndex: 'hcjqpj',
  350. key: 'hcjqpj',
  351. width: 100,
  352. align: 'center',
  353. },
  354. {
  355. title: '总尘容许浓度(mg/m³)',
  356. children: [
  357. {
  358. title: '短时间监测浓度',
  359. dataIndex: 'zcrxd_ds',
  360. key: 'zcrxd_ds',
  361. width: 100,
  362. align: 'center',
  363. },
  364. {
  365. title: '时间加权平均浓度',
  366. dataIndex: 'zcrxd_jqpj',
  367. key: 'zcrxd_jqpj',
  368. width: 100,
  369. align: 'center',
  370. },
  371. ],
  372. },
  373. {
  374. title: '呼尘容许浓度(mg/m³)',
  375. children: [
  376. {
  377. title: '短时间监测浓度',
  378. dataIndex: 'hcrxd_ds',
  379. key: 'hcrxd_ds',
  380. width: 100,
  381. align: 'center',
  382. },
  383. {
  384. title: '时间加权平均浓度',
  385. dataIndex: 'hcrxd_jqpj',
  386. key: 'hcrxd_jqpj',
  387. width: 100,
  388. align: 'center',
  389. },
  390. ],
  391. },
  392. ];
  393. export const dsutDltColumns: BasicColumn[] = [
  394. {
  395. title: '序号',
  396. width: 60,
  397. align: 'center',
  398. customRender: ({ index }: { index: number }) => `${index + 1}`,
  399. },
  400. {
  401. title: '监测地点',
  402. dataIndex: 'jcdd',
  403. key: 'jcdd',
  404. width: 100,
  405. align: 'center',
  406. },
  407. {
  408. title: '粉尘种类',
  409. dataIndex: 'fczl',
  410. key: 'fczl',
  411. width: 80,
  412. align: 'center',
  413. },
  414. {
  415. title: '总尘(短时间监测浓度,单位:mg/m³)',
  416. align: 'center',
  417. children: [
  418. {
  419. title: '作业工序-生产',
  420. dataIndex: 'sc_zcds',
  421. key: 'sc_zcds',
  422. width: 100,
  423. align: 'center',
  424. },
  425. {
  426. title: '作业工序-检修',
  427. dataIndex: 'jx_zcds',
  428. key: 'jx_zcds',
  429. width: 100,
  430. align: 'center',
  431. },
  432. ],
  433. },
  434. {
  435. title: '呼尘(短时间监测浓度,单位:mg/m³)',
  436. align: 'center',
  437. children: [
  438. {
  439. title: '作业工序-生产',
  440. dataIndex: 'sc_hcds',
  441. key: 'sc_hcds',
  442. width: 100,
  443. align: 'center',
  444. },
  445. {
  446. title: '作业工序-检修',
  447. dataIndex: 'jx_hcds',
  448. key: 'jx_hcds',
  449. width: 100,
  450. align: 'center',
  451. },
  452. ],
  453. },
  454. {
  455. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  456. dataIndex: 'zcjqpj',
  457. key: 'zcjqpj',
  458. width: 100,
  459. align: 'center',
  460. },
  461. {
  462. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  463. dataIndex: 'hcjqpj',
  464. key: 'hcjqpj',
  465. width: 100,
  466. align: 'center',
  467. },
  468. ];
  469. export const dustSwColumns: BasicColumn[] = [
  470. {
  471. title: '序号',
  472. width: 60,
  473. align: 'center',
  474. customRender: ({ index }: { index: number }) => `${index + 1}`,
  475. },
  476. {
  477. title: '班次',
  478. dataIndex: 'class',
  479. key: 'class',
  480. width: 100,
  481. align: 'center',
  482. },
  483. {
  484. title: '工作场所',
  485. dataIndex: 'gzcs',
  486. key: 'gzcs',
  487. width: 100,
  488. align: 'center',
  489. },
  490. {
  491. title: '监测地点',
  492. dataIndex: 'jcdd',
  493. key: 'jcdd',
  494. width: 100,
  495. align: 'center',
  496. },
  497. {
  498. title: '粉尘种类',
  499. dataIndex: 'fczl',
  500. key: 'fczl',
  501. width: 80,
  502. align: 'center',
  503. },
  504. {
  505. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  506. dataIndex: 'zcjqpj',
  507. key: 'zcjqpj',
  508. width: 100,
  509. align: 'center',
  510. },
  511. {
  512. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  513. dataIndex: 'hcjqpj',
  514. key: 'hcjqpj',
  515. width: 100,
  516. align: 'center',
  517. },
  518. ];
  519. export const bundleColumns: BasicColumn[] = [
  520. {
  521. title: '序号',
  522. width: 60,
  523. align: 'center',
  524. dataIndex: 'xh',
  525. key: 'xh',
  526. },
  527. {
  528. title: '测点名称',
  529. dataIndex: 'jcdd',
  530. key: 'jcdd',
  531. width: 130,
  532. align: 'center',
  533. },
  534. {
  535. title: '分析次数',
  536. dataIndex: 'fxcs',
  537. key: 'fxcs',
  538. width: 60,
  539. align: 'center',
  540. },
  541. {
  542. title: 'CO(PPM)',
  543. children: [
  544. {
  545. title: '最大值',
  546. dataIndex: 'co_max',
  547. key: 'co_max',
  548. width: 60,
  549. align: 'center',
  550. },
  551. {
  552. title: '平均值',
  553. dataIndex: 'co_ave',
  554. key: 'co_ave',
  555. width: 60,
  556. align: 'center',
  557. },
  558. ],
  559. },
  560. {
  561. title: 'CO₂(%)',
  562. children: [
  563. {
  564. title: '最大值',
  565. dataIndex: 'co2_max',
  566. key: 'co2_max',
  567. width: 60,
  568. align: 'center',
  569. },
  570. {
  571. title: '平均值',
  572. dataIndex: 'co2_ave',
  573. key: 'co2_ave',
  574. width: 60,
  575. align: 'center',
  576. },
  577. ],
  578. },
  579. {
  580. title: 'O₂(%)',
  581. children: [
  582. {
  583. title: '最小值',
  584. dataIndex: 'o2_min',
  585. key: 'o2_min',
  586. width: 60,
  587. align: 'center',
  588. },
  589. {
  590. title: '平均值',
  591. dataIndex: 'o2_ave',
  592. key: 'o2_ave',
  593. width: 60,
  594. align: 'center',
  595. },
  596. ],
  597. },
  598. {
  599. title: 'CH₄(%)',
  600. children: [
  601. {
  602. title: '最大值',
  603. dataIndex: 'ch4_max',
  604. key: 'ch4_max',
  605. width: 60,
  606. align: 'center',
  607. },
  608. {
  609. title: '平均值',
  610. dataIndex: 'ch4_ave',
  611. key: 'ch4_ave',
  612. width: 60,
  613. align: 'center',
  614. },
  615. ],
  616. },
  617. {
  618. title: 'C₂H₂(PPM)',
  619. children: [
  620. {
  621. title: '最大值',
  622. dataIndex: 'c2h2_max',
  623. key: 'c2h2_max',
  624. width: 60,
  625. align: 'center',
  626. },
  627. {
  628. title: '平均值',
  629. dataIndex: 'c2h2_ave',
  630. key: 'c2h2_ave',
  631. width: 60,
  632. align: 'center',
  633. },
  634. ],
  635. },
  636. {
  637. title: 'C₂H₄(PPM)',
  638. children: [
  639. {
  640. title: '最大值',
  641. dataIndex: 'c2h4_max',
  642. key: 'c2h4_max',
  643. width: 60,
  644. align: 'center',
  645. },
  646. {
  647. title: '平均值',
  648. dataIndex: 'c2h4_ave',
  649. key: 'c2h4_ave',
  650. width: 60,
  651. align: 'center',
  652. },
  653. ],
  654. },
  655. {
  656. title: '煤自燃阶段',
  657. dataIndex: 'internalFireWarnLevel',
  658. width: 100,
  659. align: 'center',
  660. },
  661. ];
  662. export const bundleSpycolumns: BasicColumn[] = [
  663. {
  664. title: '序号',
  665. width: 60,
  666. align: 'center',
  667. dataIndex: 'xh',
  668. key: 'xh',
  669. },
  670. {
  671. title: '采样地点',
  672. dataIndex: 'jcdd',
  673. key: 'jcdd',
  674. width: 100,
  675. align: 'center',
  676. },
  677. {
  678. title: '取样分析时间',
  679. dataIndex: 'qyfxsj',
  680. key: 'qyfxsj',
  681. width: 100,
  682. align: 'center',
  683. },
  684. {
  685. title: 'O₂(%)',
  686. dataIndex: 'o2_ave',
  687. key: 'o2_ave',
  688. width: 100,
  689. align: 'center',
  690. },
  691. {
  692. title: 'N₂(%)',
  693. dataIndex: 'n2_ave',
  694. key: 'n2_ave',
  695. width: 100,
  696. align: 'center',
  697. },
  698. {
  699. title: 'CO(%)',
  700. dataIndex: 'co_ave',
  701. key: 'co_ave',
  702. width: 100,
  703. align: 'center',
  704. },
  705. {
  706. title: 'CO₂(%)',
  707. dataIndex: 'co2_ave',
  708. key: 'co2_ave',
  709. width: 100,
  710. align: 'center',
  711. },
  712. {
  713. title: 'CH₄(%)',
  714. dataIndex: 'ch4_ave',
  715. key: 'ch4_ave',
  716. width: 100,
  717. align: 'center',
  718. },
  719. {
  720. title: 'C2H6(%)',
  721. dataIndex: 'c2h6_ave',
  722. key: 'c2h6_ave',
  723. width: 100,
  724. align: 'center',
  725. },
  726. {
  727. title: 'C₂H₄(%)',
  728. dataIndex: 'c2h4_ave',
  729. key: 'c2h4_ave',
  730. width: 100,
  731. align: 'center',
  732. },
  733. {
  734. title: 'C₂H₂(%)',
  735. dataIndex: 'c2h2_ave',
  736. key: 'c2h2_ave',
  737. width: 100,
  738. align: 'center',
  739. },
  740. {
  741. title: '总组分含量',
  742. dataIndex: 'zzfhl_ave',
  743. key: 'zzfhl_ave',
  744. width: 100,
  745. align: 'center',
  746. },
  747. {
  748. title: '煤自燃阶段',
  749. dataIndex: 'internalFireWarnLevel',
  750. width: 100,
  751. align: 'center',
  752. },
  753. ];
  754. export const ColumnsReport: BasicColumn[] = [
  755. {
  756. title: '序号',
  757. width: 60,
  758. align: 'center',
  759. customRender: ({ index }: { index: number }) => `${index + 1}`,
  760. },
  761. {
  762. title: '监测地点',
  763. dataIndex: 'jcdd',
  764. key: 'jcdd',
  765. width: 260,
  766. align: 'center',
  767. },
  768. {
  769. title: '检查次数',
  770. dataIndex: 'checkNum',
  771. key: 'checkNum',
  772. align: 'center',
  773. },
  774. {
  775. title: 'O₂(%)',
  776. dataIndex: 'o2',
  777. key: 'o2',
  778. align: 'center',
  779. },
  780. {
  781. title: 'CO(ppm)',
  782. dataIndex: 'co',
  783. key: 'co',
  784. align: 'center',
  785. },
  786. {
  787. title: 'CO₂(%)',
  788. dataIndex: 'co2',
  789. key: 'co2',
  790. align: 'center',
  791. },
  792. {
  793. title: 'CH₄(%)',
  794. dataIndex: 'ch4',
  795. key: 'ch4',
  796. align: 'center',
  797. },
  798. {
  799. title: '巡检员',
  800. dataIndex: 'checkPerson',
  801. key: 'checkPerson',
  802. align: 'center',
  803. },
  804. {
  805. title: '检查时间',
  806. dataIndex: 'checkTime',
  807. key: 'checkTime',
  808. align: 'center',
  809. },
  810. {
  811. title: '操作',
  812. dataIndex: 'action',
  813. width: 120,
  814. align: 'center',
  815. slots: { customRender: 'action' },
  816. },
  817. ];
  818. export const columnsGas1: BasicColumn[] = [
  819. {
  820. title: '序号',
  821. width: 60,
  822. align: 'center',
  823. customRender: ({ index }: { index: number }) => `${index + 1}`,
  824. },
  825. {
  826. title: '监测地点',
  827. dataIndex: 'jcdd',
  828. key: 'jcdd',
  829. width: 180,
  830. align: 'center',
  831. },
  832. {
  833. title: '夜班',
  834. children: [
  835. {
  836. title: 'CH₄‌(%)',
  837. dataIndex: 'ch4Night',
  838. key: 'ch4Night',
  839. align: 'center',
  840. },
  841. {
  842. title: 'CO₂‌(%)',
  843. dataIndex: 'co2Night',
  844. key: 'co2Night',
  845. align: 'center',
  846. },
  847. {
  848. title: 'CO(ppm)',
  849. dataIndex: 'coNight',
  850. key: 'coNight',
  851. align: 'center',
  852. },
  853. {
  854. title: 'O₂‌(%)',
  855. dataIndex: 'o2Night',
  856. key: 'o2Night',
  857. align: 'center',
  858. },
  859. {
  860. title: 'T(°C)',
  861. dataIndex: 'tNight',
  862. key: 'tNight',
  863. align: 'center',
  864. },
  865. ],
  866. },
  867. {
  868. title: '早班',
  869. children: [
  870. {
  871. title: 'CH₄‌(%)',
  872. dataIndex: 'ch4Early',
  873. key: 'ch4Early',
  874. align: 'center',
  875. },
  876. {
  877. title: 'CO₂‌(%)',
  878. dataIndex: 'co2Early',
  879. key: 'co2Early',
  880. align: 'center',
  881. },
  882. {
  883. title: 'CO(ppm)',
  884. dataIndex: 'coEarly',
  885. key: 'coEarly',
  886. align: 'center',
  887. },
  888. {
  889. title: 'O₂‌(%)',
  890. dataIndex: 'o2Early',
  891. key: 'o2Early',
  892. align: 'center',
  893. },
  894. {
  895. title: 'T(°C)',
  896. dataIndex: 'tEarly',
  897. key: 'tEarly',
  898. align: 'center',
  899. },
  900. ],
  901. },
  902. {
  903. title: '中班',
  904. children: [
  905. {
  906. title: 'CH₄‌(%)',
  907. dataIndex: 'ch4Noon',
  908. key: 'ch4Noon',
  909. align: 'center',
  910. },
  911. {
  912. title: 'CO₂‌(%)',
  913. dataIndex: 'co2Noon',
  914. key: 'co2Noon',
  915. align: 'center',
  916. },
  917. {
  918. title: 'CO(ppm)',
  919. dataIndex: 'coNoon',
  920. key: 'coNoon',
  921. align: 'center',
  922. },
  923. {
  924. title: 'O₂‌(%)',
  925. dataIndex: 'o2Noon',
  926. key: 'o2Noon',
  927. align: 'center',
  928. },
  929. {
  930. title: 'T(°C)',
  931. dataIndex: 'tNoon',
  932. key: 'tNoon',
  933. align: 'center',
  934. },
  935. ],
  936. },
  937. {
  938. title: '操作',
  939. dataIndex: 'action',
  940. width: 120,
  941. align: 'center',
  942. slots: { customRender: 'action' },
  943. },
  944. ];
  945. export const columnsGas2: BasicColumn[] = [
  946. {
  947. title: '序号',
  948. width: 60,
  949. align: 'center',
  950. customRender: ({ index }: { index: number }) => `${index + 1}`,
  951. },
  952. {
  953. title: '监测地点',
  954. dataIndex: 'jcdd',
  955. key: 'jcdd',
  956. width: 130,
  957. align: 'center',
  958. },
  959. {
  960. title: '煤层',
  961. dataIndex: 'mc',
  962. width: 80,
  963. key: 'mc',
  964. align: 'center',
  965. },
  966. {
  967. title: '夜班',
  968. children: [
  969. {
  970. title: 'CH₄‌(%)',
  971. dataIndex: 'ch4Night',
  972. key: 'ch4Night',
  973. align: 'center',
  974. },
  975. {
  976. title: 'CO₂‌(%)',
  977. dataIndex: 'co2Night',
  978. key: 'co2Night',
  979. align: 'center',
  980. },
  981. {
  982. title: 'CO(ppm)',
  983. dataIndex: 'coNight',
  984. key: 'coNight',
  985. width: 80,
  986. align: 'center',
  987. },
  988. {
  989. title: 'O₂‌(%)',
  990. dataIndex: 'o2Night',
  991. key: 'o2Night',
  992. align: 'center',
  993. },
  994. {
  995. title: 'T(°C)',
  996. dataIndex: 'tNight',
  997. key: 'tNight',
  998. align: 'center',
  999. },
  1000. {
  1001. title: '巡检员',
  1002. dataIndex: 'checkPersonNight',
  1003. key: 'checkPersonNight',
  1004. align: 'center',
  1005. },
  1006. ],
  1007. },
  1008. {
  1009. title: '早班',
  1010. children: [
  1011. {
  1012. title: 'CH₄‌(%)',
  1013. dataIndex: 'ch4Early',
  1014. key: 'ch4Early',
  1015. align: 'center',
  1016. },
  1017. {
  1018. title: 'CO₂‌(%)',
  1019. dataIndex: 'co2Early',
  1020. key: 'co2Early',
  1021. align: 'center',
  1022. },
  1023. {
  1024. title: 'CO(ppm)',
  1025. dataIndex: 'coEarly',
  1026. key: 'coEarly',
  1027. width: 80,
  1028. align: 'center',
  1029. },
  1030. {
  1031. title: 'O₂‌(%)',
  1032. dataIndex: 'o2Early',
  1033. key: 'o2Early',
  1034. align: 'center',
  1035. },
  1036. {
  1037. title: 'T(°C)',
  1038. dataIndex: 'tEarly',
  1039. key: 'tEarly',
  1040. align: 'center',
  1041. },
  1042. {
  1043. title: '巡检员',
  1044. dataIndex: 'checkPersonEarly',
  1045. key: 'checkPersonEarly',
  1046. align: 'center',
  1047. },
  1048. ],
  1049. },
  1050. {
  1051. title: '中班',
  1052. children: [
  1053. {
  1054. title: 'CH₄‌(%)',
  1055. dataIndex: 'ch4Noon',
  1056. key: 'ch4Noon',
  1057. align: 'center',
  1058. },
  1059. {
  1060. title: 'CO₂‌(%)',
  1061. dataIndex: 'co2Noon',
  1062. key: 'co2Noon',
  1063. align: 'center',
  1064. },
  1065. {
  1066. title: 'CO(ppm)',
  1067. dataIndex: 'coNoon',
  1068. key: 'coNoon',
  1069. width: 80,
  1070. align: 'center',
  1071. },
  1072. {
  1073. title: 'O₂‌(%)',
  1074. dataIndex: 'o2Noon',
  1075. key: 'o2Noon',
  1076. align: 'center',
  1077. },
  1078. {
  1079. title: 'T(°C)',
  1080. dataIndex: 'tNoon',
  1081. key: 'tNoon',
  1082. align: 'center',
  1083. },
  1084. {
  1085. title: '巡检员',
  1086. dataIndex: 'checkPersonNoon',
  1087. key: 'checkPersonNoon',
  1088. align: 'center',
  1089. },
  1090. ],
  1091. },
  1092. {
  1093. title: '操作',
  1094. dataIndex: 'action',
  1095. width: 120,
  1096. align: 'center',
  1097. slots: { customRender: 'action' },
  1098. },
  1099. ];
  1100. export const gasPipeColumns: BasicColumn[] = [
  1101. {
  1102. title: '起点',
  1103. children: [
  1104. {
  1105. title: '管道位置',
  1106. dataIndex: 'strinstallpos',
  1107. key: 'strinstallpos',
  1108. },
  1109. {
  1110. title: '二氧化碳(%)',
  1111. dataIndex: 'co2val',
  1112. key: 'co2val',
  1113. },
  1114. {
  1115. title: '一氧化碳(%)',
  1116. dataIndex: 'coval',
  1117. key: 'coval',
  1118. },
  1119. // {
  1120. // title: '负压(Pa)',
  1121. // dataIndex: 'fyVal',
  1122. // key: 'fyVal',
  1123. // },
  1124. // {
  1125. // title: '瓦斯抽采浓度(%)',
  1126. // dataIndex: 'gasC',
  1127. // key: 'gasC',
  1128. // },
  1129. // {
  1130. // title: '瓦斯抽采混量',
  1131. // dataIndex: 'gasMixMass',
  1132. // key: 'gasMixMass',
  1133. // },
  1134. // {
  1135. // title: '瓦斯抽采纯量',
  1136. // dataIndex: 'gasMass',
  1137. // key: 'gasMass',
  1138. // },
  1139. {
  1140. title: '累计抽采量',
  1141. dataIndex: 'gasTotalMass',
  1142. key: 'gasTotalMass',
  1143. },
  1144. {
  1145. title: '管道流量',
  1146. dataIndex: 'gdlyVal',
  1147. key: 'gdlyVal',
  1148. },
  1149. {
  1150. title: '管道绝对温度',
  1151. dataIndex: 'gdjdwdVal',
  1152. key: 'gdjdwdVal',
  1153. },
  1154. ],
  1155. },
  1156. {
  1157. title: '终点',
  1158. children: [
  1159. {
  1160. title: '管道位置',
  1161. dataIndex: 'strinstallpos_end',
  1162. key: 'strinstallpos_end',
  1163. },
  1164. {
  1165. title: '二氧化碳(%)',
  1166. dataIndex: 'co2val_end',
  1167. key: 'co2val_end',
  1168. },
  1169. {
  1170. title: '一氧化碳(%)',
  1171. dataIndex: 'coval_end',
  1172. key: 'coval_end',
  1173. },
  1174. // {
  1175. // title: '负压(Pa)',
  1176. // dataIndex: 'fyVal_end',
  1177. // key: 'fyVal_end',
  1178. // },
  1179. // {
  1180. // title: '瓦斯抽采浓度(%)',
  1181. // dataIndex: 'gasC_end',
  1182. // key: 'gasC_end',
  1183. // },
  1184. // {
  1185. // title: '瓦斯抽采混量',
  1186. // dataIndex: 'gasMixMass_end',
  1187. // key: 'gasMixMass_end',
  1188. // },
  1189. // {
  1190. // title: '瓦斯抽采纯量',
  1191. // dataIndex: 'gasMass_end',
  1192. // key: 'gasMass_end',
  1193. // },
  1194. {
  1195. title: '累计抽采量',
  1196. dataIndex: 'gasTotalMass_end',
  1197. key: 'gasTotalMass_end',
  1198. },
  1199. {
  1200. title: '管道流量',
  1201. dataIndex: 'gdlyVal_end',
  1202. key: 'gdlyVal_end',
  1203. },
  1204. {
  1205. title: '管道绝对温度',
  1206. dataIndex: 'gdjdwdVal_end',
  1207. key: 'gdjdwdVal_end',
  1208. },
  1209. ],
  1210. },
  1211. {
  1212. title: '是否泄露',
  1213. dataIndex: 'isLeakage',
  1214. key: 'isLeakage',
  1215. },
  1216. {
  1217. title: '是否堵塞',
  1218. dataIndex: 'isBlock',
  1219. key: 'isBlock',
  1220. },
  1221. ];