dust-table.data.ts 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348
  1. export const columns = [
  2. {
  3. title: '序号',
  4. width: 60,
  5. align: 'center',
  6. customRender: ({ index }: { index: number }) => `${index + 1}`,
  7. },
  8. {
  9. title: '工作场所',
  10. dataIndex: 'gzcs',
  11. key: 'gzcs',
  12. width: 100,
  13. align: 'center',
  14. },
  15. {
  16. title: '工种',
  17. dataIndex: 'gz',
  18. key: 'gz',
  19. width: 100,
  20. align: 'center',
  21. },
  22. {
  23. title: '监测地点',
  24. dataIndex: 'jcdd',
  25. key: 'jcdd',
  26. width: 100,
  27. align: 'center',
  28. },
  29. {
  30. title: '粉尘种类',
  31. dataIndex: 'fczl',
  32. key: 'fczl',
  33. width: 80,
  34. align: 'center',
  35. },
  36. {
  37. title: '总尘(短时间监测浓度,mg/m³)',
  38. width: 100,
  39. align: 'center',
  40. children: [
  41. {
  42. title: '作业工序-生产',
  43. dataIndex: 'sc_zcds',
  44. key: 'sc_zcds',
  45. width: 100,
  46. align: 'center',
  47. },
  48. {
  49. title: '作业工序-检修',
  50. dataIndex: 'jx_zcds',
  51. key: 'jx_zcds',
  52. width: 100,
  53. align: 'center',
  54. },
  55. ],
  56. },
  57. {
  58. title: '呼尘(短时间监测浓度,mg/m³)',
  59. width: 100,
  60. align: 'center',
  61. children: [
  62. {
  63. title: '作业工序-生产',
  64. dataIndex: 'sc_hcds',
  65. key: 'sc_hcds',
  66. width: 100,
  67. align: 'center',
  68. },
  69. {
  70. title: '作业工序-检修',
  71. dataIndex: 'jx_hcds',
  72. key: 'jx_hcds',
  73. width: 100,
  74. align: 'center',
  75. },
  76. ],
  77. },
  78. {
  79. title: '总尘(时间加权平均浓度,mg/m³)',
  80. dataIndex: 'zcjqpj',
  81. key: 'zcjqpj',
  82. width: 100,
  83. align: 'center',
  84. },
  85. {
  86. title: '呼尘(时间加权平均浓度,mg/m³)',
  87. dataIndex: 'hcjqpj',
  88. key: 'hcjqpj',
  89. width: 100,
  90. align: 'center',
  91. },
  92. {
  93. title: '总尘容许浓度(mg/m³)',
  94. children: [
  95. {
  96. title: '短时间监测浓度',
  97. dataIndex: 'zcrxd_ds',
  98. key: 'zcrxd_ds',
  99. width: 100,
  100. align: 'center',
  101. },
  102. {
  103. title: '时间加权平均浓度',
  104. dataIndex: 'zcrxd_jqpj',
  105. key: 'zcrxd_jqpj',
  106. width: 120,
  107. align: 'center',
  108. },
  109. ],
  110. },
  111. {
  112. title: '呼尘容许浓度(mg/m³)',
  113. children: [
  114. {
  115. title: '短时间监测浓度',
  116. dataIndex: 'hcrxd_ds',
  117. key: 'hcrxd_ds',
  118. width: 120,
  119. align: 'center',
  120. },
  121. {
  122. title: '时间加权平均浓度',
  123. dataIndex: 'hcrxd_jqpj',
  124. key: 'hcrxd_jqpj',
  125. width: 120,
  126. align: 'center',
  127. },
  128. ],
  129. },
  130. ];
  131. export const Dltcolumns = [
  132. {
  133. title: '序号',
  134. width: 60,
  135. align: 'center',
  136. customRender: ({ index }: { index: number }) => `${index + 1}`,
  137. },
  138. {
  139. title: '监测地点',
  140. dataIndex: 'jcdd',
  141. key: 'jcdd',
  142. width: 100,
  143. align: 'center',
  144. },
  145. {
  146. title: '粉尘种类',
  147. dataIndex: 'fczl',
  148. key: 'fczl',
  149. width: 80,
  150. align: 'center',
  151. },
  152. {
  153. title: '总尘(短时间监测浓度,单位:mg/m³)',
  154. width: 100,
  155. align: 'center',
  156. children: [
  157. {
  158. title: '作业工序-生产',
  159. dataIndex: 'sc_zcds',
  160. key: 'sc_zcds',
  161. width: 100,
  162. align: 'center',
  163. },
  164. {
  165. title: '作业工序-检修',
  166. dataIndex: 'jx_zcds',
  167. key: 'jx_zcds',
  168. width: 100,
  169. align: 'center',
  170. },
  171. ],
  172. },
  173. {
  174. title: '呼尘(短时间监测浓度,单位:mg/m³)',
  175. width: 100,
  176. align: 'center',
  177. children: [
  178. {
  179. title: '作业工序-生产',
  180. dataIndex: 'sc_hcds',
  181. key: 'sc_hcds',
  182. width: 100,
  183. align: 'center',
  184. },
  185. {
  186. title: '作业工序-检修',
  187. dataIndex: 'jx_hcds',
  188. key: 'jx_hcds',
  189. width: 100,
  190. align: 'center',
  191. },
  192. ],
  193. },
  194. {
  195. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  196. dataIndex: 'zcjqpj',
  197. key: 'zcjqpj',
  198. width: 100,
  199. align: 'center',
  200. },
  201. {
  202. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  203. dataIndex: 'hcjqpj',
  204. key: 'hcjqpj',
  205. width: 100,
  206. align: 'center',
  207. },
  208. ];
  209. export const Swcolumns = [
  210. {
  211. title: '序号',
  212. width: 60,
  213. align: 'center',
  214. customRender: ({ index }: { index: number }) => `${index + 1}`,
  215. },
  216. {
  217. title: '班次',
  218. dataIndex: 'class',
  219. key: 'class',
  220. width: 100,
  221. align: 'center',
  222. },
  223. {
  224. title: '工作场所',
  225. dataIndex: 'gzcs',
  226. key: 'gzcs',
  227. width: 100,
  228. align: 'center',
  229. },
  230. {
  231. title: '监测地点',
  232. dataIndex: 'jcdd',
  233. key: 'jcdd',
  234. width: 100,
  235. align: 'center',
  236. },
  237. {
  238. title: '粉尘种类',
  239. dataIndex: 'fczl',
  240. key: 'fczl',
  241. width: 80,
  242. align: 'center',
  243. },
  244. {
  245. title: '总尘(时间加权平均浓度,单位:mg/m³)',
  246. dataIndex: 'zcjqpj',
  247. key: 'zcjqpj',
  248. width: 100,
  249. align: 'center',
  250. },
  251. {
  252. title: '呼尘(时间加权平均浓度,单位:mg/m³)',
  253. dataIndex: 'hcjqpj',
  254. key: 'hcjqpj',
  255. width: 100,
  256. align: 'center',
  257. },
  258. ];
  259. export const Hjtcolumns = [
  260. {
  261. title: '序号',
  262. width: 60,
  263. align: 'center',
  264. customRender: ({ index }: { index: number }) => `${index + 1}`,
  265. },
  266. {
  267. title: '监测地点',
  268. dataIndex: 'jcdd',
  269. key: 'jcdd',
  270. width: 150,
  271. align: 'center',
  272. },
  273. {
  274. title: '作业环境(工序)',
  275. dataIndex: 'fczl',
  276. key: 'fczl',
  277. width: 80,
  278. align: 'center',
  279. },
  280. {
  281. title: '生产期间粉尘浓度(mg/m³)',
  282. width: 100,
  283. align: 'center',
  284. children: [
  285. {
  286. title: '总尘',
  287. dataIndex: 'sc_zcds',
  288. key: 'sc_zcds',
  289. width: 80,
  290. align: 'center',
  291. },
  292. {
  293. title: '呼尘',
  294. dataIndex: 'sc_hcds',
  295. key: 'sc_hcds',
  296. width: 80,
  297. align: 'center',
  298. },
  299. {
  300. title: '正常生产时间',
  301. dataIndex: 'sc_sj',
  302. key: 'sc_sj',
  303. width: 100,
  304. align: 'center',
  305. },
  306. ],
  307. },
  308. {
  309. title: '检修期间粉尘浓度(mg/m³)',
  310. width: 100,
  311. align: 'center',
  312. children: [
  313. {
  314. title: '总尘',
  315. dataIndex: 'jx_zcds',
  316. key: 'jx_zcds',
  317. width: 80,
  318. align: 'center',
  319. },
  320. {
  321. title: '呼尘',
  322. dataIndex: 'jx_hcds',
  323. key: 'jx_hcds',
  324. width: 80,
  325. align: 'center',
  326. },
  327. {
  328. title: '停机检修时间',
  329. dataIndex: 'jx_sj',
  330. key: 'jx_sj',
  331. width: 100,
  332. align: 'center',
  333. },
  334. ],
  335. },
  336. {
  337. title: '时间加权平均浓度(mg/m³)',
  338. width: 100,
  339. align: 'center',
  340. children: [
  341. {
  342. title: '总尘',
  343. dataIndex: 'zcjqpj',
  344. key: 'zcjqpj',
  345. width: 80,
  346. align: 'center',
  347. },
  348. {
  349. title: '是否合格',
  350. dataIndex: 'zcsfhgjqpj',
  351. key: 'zcsfhgjqpj',
  352. width: 80,
  353. align: 'center',
  354. },
  355. {
  356. title: '呼尘',
  357. dataIndex: 'hcjqpj',
  358. key: 'hcjqpj',
  359. width: 80,
  360. align: 'center',
  361. },
  362. {
  363. title: '是否合格',
  364. dataIndex: 'hcsfhgjqpj',
  365. key: 'hcsfhgjqpj',
  366. width: 80,
  367. align: 'center',
  368. },
  369. ],
  370. },
  371. {
  372. title: '采取措施',
  373. dataIndex: 'smark',
  374. key: 'smark',
  375. width: 80,
  376. align: 'center',
  377. },
  378. ];
  379. export const Bdcolumns = [
  380. {
  381. title: '序号',
  382. width: 60,
  383. align: 'center',
  384. dataIndex: 'xh',
  385. },
  386. {
  387. title: '测定地点',
  388. dataIndex: 'jcdd',
  389. key: 'jcdd',
  390. width: 150,
  391. align: 'center',
  392. },
  393. {
  394. title: '作业环境(工序)',
  395. dataIndex: 'zyhj',
  396. key: 'zyhj',
  397. width: 80,
  398. align: 'center',
  399. },
  400. {
  401. title: '粉尘浓度(mg/m³)',
  402. width: 100,
  403. align: 'center',
  404. children: [
  405. {
  406. title: '全尘',
  407. dataIndex: 'qc',
  408. key: 'qc',
  409. width: 80,
  410. align: 'center',
  411. },
  412. {
  413. title: '呼尘',
  414. dataIndex: 'hc',
  415. key: 'hc',
  416. width: 80,
  417. align: 'center',
  418. },
  419. ],
  420. },
  421. {
  422. title: '备注',
  423. dataIndex: 'smark',
  424. key: 'smark',
  425. width: 80,
  426. align: 'center',
  427. },
  428. ];
  429. export const Bltcolumns = [
  430. {
  431. title: '序号',
  432. width: 60,
  433. align: 'center',
  434. dataIndex: 'xh',
  435. },
  436. {
  437. title: '工作面',
  438. dataIndex: 'gzm',
  439. key: 'gzm',
  440. width: 150,
  441. align: 'center',
  442. },
  443. {
  444. title: '监测地点',
  445. dataIndex: 'jcdd',
  446. key: 'jcdd',
  447. width: 150,
  448. align: 'center',
  449. },
  450. {
  451. title: '生产工艺',
  452. dataIndex: 'scgy',
  453. key: 'scgy',
  454. width: 80,
  455. align: 'center',
  456. },
  457. {
  458. title: '粉尘浓度(mg/m³)',
  459. width: 100,
  460. align: 'center',
  461. children: [
  462. {
  463. title: '总粉尘',
  464. dataIndex: 'sc_zcds',
  465. key: 'sc_zcds',
  466. width: 80,
  467. align: 'center',
  468. },
  469. {
  470. title: '呼吸性粉尘',
  471. dataIndex: 'sc_hcds',
  472. key: 'sc_hcds',
  473. width: 80,
  474. align: 'center',
  475. },
  476. ],
  477. },
  478. {
  479. title: '防尘措施',
  480. dataIndex: 'fccs',
  481. key: 'fccs',
  482. width: 80,
  483. align: 'center',
  484. },
  485. {
  486. title: '测尘日期',
  487. dataIndex: 'ccrq',
  488. key: 'ccrq',
  489. width: 80,
  490. align: 'center',
  491. },
  492. {
  493. title: '测尘人',
  494. dataIndex: 'ccr',
  495. key: 'ccr',
  496. width: 80,
  497. align: 'center',
  498. },
  499. {
  500. title: '测尘仪编号',
  501. dataIndex: 'ccybh',
  502. key: 'ccybh',
  503. width: 80,
  504. align: 'center',
  505. },
  506. {
  507. title: '备注',
  508. dataIndex: 'smark',
  509. key: 'smark',
  510. width: 80,
  511. align: 'center',
  512. },
  513. ];
  514. export const Sgtcolumns = [
  515. {
  516. title: '序号',
  517. width: 60,
  518. align: 'center',
  519. dataIndex: 'xh',
  520. },
  521. {
  522. title: '测定地点',
  523. dataIndex: 'jcdd',
  524. key: 'jcdd',
  525. width: 150,
  526. align: 'center',
  527. },
  528. {
  529. title: '作业环境(工序)',
  530. dataIndex: 'scgy',
  531. key: 'scgy',
  532. width: 80,
  533. align: 'center',
  534. },
  535. {
  536. title: '粉尘浓度(mg/m³)',
  537. width: 100,
  538. align: 'center',
  539. children: [
  540. {
  541. title: '全尘',
  542. dataIndex: 'sc_zcds',
  543. key: 'sc_zcds',
  544. width: 80,
  545. align: 'center',
  546. },
  547. {
  548. title: '呼尘',
  549. dataIndex: 'sc_hcds',
  550. key: 'sc_hcds',
  551. width: 80,
  552. align: 'center',
  553. },
  554. ],
  555. },
  556. {
  557. title: '测尘员',
  558. dataIndex: 'ccr',
  559. key: 'ccr',
  560. width: 80,
  561. align: 'center',
  562. },
  563. {
  564. title: '备注',
  565. dataIndex: 'smark',
  566. key: 'smark',
  567. width: 80,
  568. align: 'center',
  569. },
  570. ];
  571. export const Yjlcolumns = [
  572. {
  573. title: '序号',
  574. width: 60,
  575. align: 'center',
  576. dataIndex: 'xh',
  577. },
  578. {
  579. title: '测定地点',
  580. dataIndex: 'jcdd',
  581. key: 'jcdd',
  582. width: 150,
  583. align: 'center',
  584. },
  585. {
  586. title: '作业环境(工序)',
  587. dataIndex: 'zyhj',
  588. key: 'zyhj',
  589. width: 80,
  590. align: 'center',
  591. },
  592. {
  593. title: '防尘措施',
  594. dataIndex: 'fccs',
  595. key: 'fccs',
  596. width: 80,
  597. align: 'center',
  598. },
  599. {
  600. title: '采样流量(L/min)',
  601. dataIndex: 'cyll',
  602. key: 'cyll',
  603. width: 80,
  604. align: 'center',
  605. },
  606. {
  607. title: '采样时间(min)',
  608. dataIndex: 'cysj',
  609. key: 'cysj',
  610. width: 80,
  611. align: 'center',
  612. },
  613. {
  614. title: '采样体积(L)',
  615. dataIndex: 'cytj',
  616. key: 'cytj',
  617. width: 80,
  618. align: 'center',
  619. },
  620. {
  621. title: '粉尘浓度(mg/m³)',
  622. width: 100,
  623. align: 'center',
  624. children: [
  625. {
  626. title: '总粉尘',
  627. dataIndex: 'zcfcnd',
  628. key: 'zcfcnd',
  629. width: 80,
  630. align: 'center',
  631. },
  632. {
  633. title: '呼尘',
  634. dataIndex: 'hcfcnd',
  635. key: 'hcfcnd',
  636. width: 80,
  637. align: 'center',
  638. },
  639. ],
  640. },
  641. {
  642. title: '备注',
  643. dataIndex: 'smark',
  644. key: 'smark',
  645. width: 80,
  646. align: 'center',
  647. },
  648. ];
  649. export const Cctrkcolumns = [
  650. {
  651. title: '序号',
  652. width: 60,
  653. align: 'center',
  654. dataIndex: 'xh',
  655. },
  656. {
  657. title: '测定地点',
  658. dataIndex: 'jcdd',
  659. key: 'jcdd',
  660. width: 150,
  661. align: 'center',
  662. },
  663. {
  664. title: '粉尘种类',
  665. dataIndex: 'fczl',
  666. key: 'fczl',
  667. width: 80,
  668. align: 'center',
  669. },
  670. {
  671. title: '作业环境(工序)',
  672. dataIndex: 'zyhj',
  673. key: 'zyhj',
  674. width: 80,
  675. align: 'center',
  676. },
  677. {
  678. title: '总粉尘(短时间检查浓度,mg/m³)',
  679. dataIndex: 'zcjqpj',
  680. key: 'zcjqpj',
  681. width: 100,
  682. align: 'center',
  683. },
  684. {
  685. title: '呼吸性粉尘(短时间检查浓度,mg/m³)',
  686. dataIndex: 'hcjqpj',
  687. key: 'hcjqpj',
  688. width: 100,
  689. align: 'center',
  690. },
  691. {
  692. title: '总尘容许浓度(短时间监测浓度,mg/m³)',
  693. dataIndex: 'zcrxnd',
  694. key: 'zcrxnd',
  695. width: 100,
  696. align: 'center',
  697. },
  698. {
  699. title: '呼尘容许浓度(短时间监测浓度,mg/m³)',
  700. dataIndex: 'hcrxnd',
  701. key: 'hcrxnd',
  702. width: 100,
  703. align: 'center',
  704. },
  705. ];
  706. //监测字段
  707. export const fieldMapping = {
  708. sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',
  709. jx_zcds: '总尘-作业工序-检修(短时间监测浓度,mg/m³)',
  710. sc_hcds: '呼尘-作业工序-生产(短时间监测浓度,mg/m³)',
  711. jx_hcds: '呼尘-作业工序-检修(短时间监测浓度,mg/m³)',
  712. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  713. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  714. zcrxd_ds: '总尘容许浓度(短时间监测浓度,mg/m³)',
  715. zcrxd_jqpj: '总尘容许浓度(时间加权平均浓度,mg/m³)',
  716. hcrxd_ds: '呼尘容许浓度(短时间监测浓度,mg/m³)',
  717. hcrxd_jqpj: '呼尘容许浓度(时间加权平均浓度,mg/m³)',
  718. };
  719. export const fieldDltMapping = {
  720. sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',
  721. jx_zcds: '总尘-作业工序-检修(短时间监测浓度,mg/m³)',
  722. sc_hcds: '呼尘-作业工序-生产(短时间监测浓度,mg/m³)',
  723. jx_hcds: '呼尘-作业工序-检修(短时间监测浓度,mg/m³)',
  724. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  725. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  726. };
  727. export const fieldSwMapping = {
  728. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  729. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  730. };
  731. export const fieldHjtMapping = {
  732. sc_zcds: '总尘(生产期间粉尘浓度,mg/m³)',
  733. sc_hcds: '呼尘(生产期间粉尘浓度,mg/m³)',
  734. jx_zcds: '总尘(检修期间粉尘浓度,mg/m³)',
  735. jx_hcds: '呼尘(检修期间粉尘浓度,mg/m³)',
  736. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  737. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  738. };
  739. export const fieldBdMapping = {
  740. qc: '总尘(粉尘浓度,mg/m³)',
  741. hc: '呼尘(粉尘浓度,mg/m³)',
  742. };
  743. export const fieldBltMapping = {
  744. sc_zcds: '总尘(粉尘浓度,mg/m³)',
  745. sc_hcds: '呼尘(粉尘浓度,mg/m³)',
  746. };
  747. export const fieldSgtMapping = {
  748. sc_zcds: '全尘(粉尘浓度,mg/m³)',
  749. sc_hcds: '呼尘(粉尘浓度,mg/m³)',
  750. };
  751. export const fieldYjlMapping = {
  752. zcfcnd: '总粉尘(粉尘浓度,mg/m³)',
  753. hcfcnd: '呼尘(粉尘浓度,mg/m³)',
  754. };
  755. export const fieldCctrkMapping = {
  756. zcjqpj: '总粉尘(短时间检查浓度,mg/m³)',
  757. hcjqpj: '呼吸性粉尘(短时间检查浓度,mg/m³)',
  758. zcrxnd: '总尘容许浓度(短时间监测浓度,mg/m³)',
  759. hcrxnd: '呼尘容许浓度(短时间监测浓度,mg/m³)',
  760. };
  761. // 检测地点
  762. export const dataColumns = [
  763. {
  764. title: '监测字段',
  765. align: 'center',
  766. dataIndex: 'key',
  767. key: 'key',
  768. width: 200,
  769. customRender: ({ text }) => fieldMapping[text] || text,
  770. },
  771. {
  772. title: '最大值',
  773. dataIndex: 'value',
  774. align: 'center',
  775. width: 100,
  776. key: 'value',
  777. },
  778. {
  779. title: '工种',
  780. width: 100,
  781. dataIndex: 'gz',
  782. align: 'center',
  783. key: 'gz',
  784. },
  785. {
  786. width: 100,
  787. align: 'center',
  788. title: '监测地点',
  789. dataIndex: 'jcdd',
  790. key: 'jcdd',
  791. },
  792. {
  793. width: 100,
  794. align: 'center',
  795. title: '粉尘种类',
  796. dataIndex: 'fczl',
  797. key: 'fczl',
  798. },
  799. ];
  800. export const dataDltColumns = [
  801. {
  802. title: '监测字段',
  803. align: 'center',
  804. dataIndex: 'key',
  805. key: 'key',
  806. width: 130,
  807. customRender: ({ text }) => fieldDltMapping[text] || text,
  808. },
  809. {
  810. title: '最大值',
  811. dataIndex: 'value',
  812. align: 'center',
  813. width: 100,
  814. key: 'value',
  815. },
  816. {
  817. width: 130,
  818. align: 'center',
  819. title: '监测地点',
  820. dataIndex: 'jcdd',
  821. key: 'jcdd',
  822. },
  823. {
  824. width: 100,
  825. align: 'center',
  826. title: '粉尘种类',
  827. dataIndex: 'fczl',
  828. key: 'fczl',
  829. },
  830. ];
  831. export const dataSwColumns = [
  832. {
  833. title: '监测字段',
  834. align: 'center',
  835. dataIndex: 'key',
  836. key: 'key',
  837. width: 200,
  838. customRender: ({ text }) => fieldSwMapping[text] || text,
  839. },
  840. {
  841. title: '最大值',
  842. dataIndex: 'value',
  843. align: 'center',
  844. width: 100,
  845. key: 'value',
  846. },
  847. {
  848. width: 100,
  849. align: 'center',
  850. title: '监测地点',
  851. dataIndex: 'jcdd',
  852. key: 'jcdd',
  853. },
  854. {
  855. width: 100,
  856. align: 'center',
  857. title: '粉尘种类',
  858. dataIndex: 'fczl',
  859. key: 'fczl',
  860. },
  861. ];
  862. export const dataHjtColumns = [
  863. {
  864. title: '监测字段',
  865. align: 'center',
  866. dataIndex: 'key',
  867. key: 'key',
  868. width: 100,
  869. customRender: ({ text }) => fieldHjtMapping[text] || text,
  870. },
  871. {
  872. title: '最大值',
  873. dataIndex: 'value',
  874. align: 'center',
  875. width: 100,
  876. key: 'value',
  877. },
  878. {
  879. width: 100,
  880. align: 'center',
  881. title: '监测地点',
  882. dataIndex: 'jcdd',
  883. key: 'jcdd',
  884. },
  885. {
  886. width: 100,
  887. align: 'center',
  888. title: '作业环境(工序)',
  889. dataIndex: 'fczl',
  890. key: 'fczl',
  891. },
  892. ];
  893. export const dataBdColumns = [
  894. {
  895. title: '监测字段',
  896. align: 'center',
  897. dataIndex: 'key',
  898. key: 'key',
  899. width: 100,
  900. customRender: ({ text }) => fieldBdMapping[text] || text,
  901. },
  902. {
  903. title: '最大值',
  904. dataIndex: 'value',
  905. align: 'center',
  906. width: 100,
  907. key: 'value',
  908. },
  909. {
  910. width: 100,
  911. align: 'center',
  912. title: '监测地点',
  913. dataIndex: 'jcdd',
  914. key: 'jcdd',
  915. },
  916. {
  917. width: 100,
  918. align: 'center',
  919. title: '作业环境(工序)',
  920. dataIndex: 'zyhj',
  921. key: 'zyhj',
  922. },
  923. ];
  924. export const dataBltColumns = [
  925. {
  926. title: '监测字段',
  927. align: 'center',
  928. dataIndex: 'key',
  929. key: 'key',
  930. width: 100,
  931. customRender: ({ text }) => fieldBltMapping[text] || text,
  932. },
  933. {
  934. title: '最大值',
  935. dataIndex: 'value',
  936. align: 'center',
  937. width: 100,
  938. key: 'value',
  939. },
  940. {
  941. width: 100,
  942. align: 'center',
  943. title: '监测地点',
  944. dataIndex: 'jcdd',
  945. key: 'jcdd',
  946. },
  947. {
  948. width: 100,
  949. align: 'center',
  950. title: '作业环境(工序)',
  951. dataIndex: 'scgy',
  952. key: 'scgy',
  953. },
  954. ];
  955. export const dataSgtColumns = [
  956. {
  957. title: '监测字段',
  958. align: 'center',
  959. dataIndex: 'key',
  960. key: 'key',
  961. width: 100,
  962. customRender: ({ text }) => fieldBltMapping[text] || text,
  963. },
  964. {
  965. title: '最大值',
  966. dataIndex: 'value',
  967. align: 'center',
  968. width: 100,
  969. key: 'value',
  970. },
  971. {
  972. width: 100,
  973. align: 'center',
  974. title: '监测地点',
  975. dataIndex: 'jcdd',
  976. key: 'jcdd',
  977. },
  978. {
  979. width: 100,
  980. align: 'center',
  981. title: '作业环境(工序)',
  982. dataIndex: 'scgy',
  983. key: 'scgy',
  984. },
  985. ];
  986. export const dataYjlColumns = [
  987. {
  988. title: '监测字段',
  989. align: 'center',
  990. dataIndex: 'key',
  991. key: 'key',
  992. width: 100,
  993. customRender: ({ text }) => fieldYjlMapping[text] || text,
  994. },
  995. {
  996. title: '最大值',
  997. dataIndex: 'value',
  998. align: 'center',
  999. width: 100,
  1000. key: 'value',
  1001. },
  1002. {
  1003. width: 100,
  1004. align: 'center',
  1005. title: '监测地点',
  1006. dataIndex: 'jcdd',
  1007. key: 'jcdd',
  1008. },
  1009. {
  1010. width: 100,
  1011. align: 'center',
  1012. title: '作业环境(工序)',
  1013. dataIndex: 'zyhj',
  1014. key: 'zyhj',
  1015. },
  1016. ];
  1017. export const dataCctrkColumns = [
  1018. {
  1019. title: '监测字段',
  1020. align: 'center',
  1021. dataIndex: 'key',
  1022. key: 'key',
  1023. width: 100,
  1024. customRender: ({ text }) => fieldCctrkMapping[text] || text,
  1025. },
  1026. {
  1027. title: '最大值',
  1028. dataIndex: 'value',
  1029. align: 'center',
  1030. width: 100,
  1031. key: 'value',
  1032. },
  1033. {
  1034. width: 100,
  1035. align: 'center',
  1036. title: '监测地点',
  1037. dataIndex: 'jcdd',
  1038. key: 'jcdd',
  1039. },
  1040. {
  1041. width: 100,
  1042. align: 'center',
  1043. title: '作业环境(工序)',
  1044. dataIndex: 'zyhj',
  1045. key: 'zyhj',
  1046. },
  1047. ];
  1048. // 当日情况粉尘情况分析
  1049. export const AllDataColumns = [
  1050. {
  1051. title: '监测字段',
  1052. align: 'center',
  1053. dataIndex: 'key',
  1054. key: 'key',
  1055. width: 200,
  1056. customRender: ({ text }) => fieldMapping[text] || text,
  1057. },
  1058. {
  1059. title: '最大值',
  1060. dataIndex: 'value',
  1061. align: 'center',
  1062. width: 100,
  1063. key: 'value',
  1064. },
  1065. {
  1066. width: 100,
  1067. title: '工作场所',
  1068. dataIndex: 'gzcs',
  1069. align: 'center',
  1070. key: 'gzcs',
  1071. },
  1072. {
  1073. title: '工种',
  1074. width: 100,
  1075. dataIndex: 'gz',
  1076. align: 'center',
  1077. key: 'gz',
  1078. },
  1079. {
  1080. width: 100,
  1081. align: 'center',
  1082. title: '监测地点',
  1083. dataIndex: 'jcdd',
  1084. key: 'jcdd',
  1085. },
  1086. {
  1087. width: 100,
  1088. align: 'center',
  1089. title: '粉尘种类',
  1090. dataIndex: 'fczl',
  1091. key: 'fczl',
  1092. },
  1093. ];
  1094. export const AllDataDltColumns = [
  1095. {
  1096. title: '监测字段',
  1097. align: 'center',
  1098. dataIndex: 'key',
  1099. key: 'key',
  1100. width: 130,
  1101. customRender: ({ text }) => fieldDltMapping[text] || text,
  1102. },
  1103. {
  1104. title: '最大值',
  1105. dataIndex: 'value',
  1106. align: 'center',
  1107. width: 100,
  1108. key: 'value',
  1109. },
  1110. {
  1111. width: 130,
  1112. align: 'center',
  1113. title: '监测地点',
  1114. dataIndex: 'jcdd',
  1115. key: 'jcdd',
  1116. },
  1117. {
  1118. width: 100,
  1119. align: 'center',
  1120. title: '粉尘种类',
  1121. dataIndex: 'fczl',
  1122. key: 'fczl',
  1123. },
  1124. ];
  1125. export const AllDataSwColumns = [
  1126. {
  1127. title: '监测字段',
  1128. align: 'center',
  1129. dataIndex: 'key',
  1130. key: 'key',
  1131. width: 200,
  1132. customRender: ({ text }) => fieldSwMapping[text] || text,
  1133. },
  1134. {
  1135. title: '最大值',
  1136. dataIndex: 'value',
  1137. align: 'center',
  1138. width: 100,
  1139. key: 'value',
  1140. },
  1141. {
  1142. width: 100,
  1143. title: '工作场所',
  1144. dataIndex: 'gzcs',
  1145. align: 'center',
  1146. key: 'gzcs',
  1147. },
  1148. {
  1149. width: 100,
  1150. align: 'center',
  1151. title: '监测地点',
  1152. dataIndex: 'jcdd',
  1153. key: 'jcdd',
  1154. },
  1155. {
  1156. width: 100,
  1157. align: 'center',
  1158. title: '粉尘种类',
  1159. dataIndex: 'fczl',
  1160. key: 'fczl',
  1161. },
  1162. ];
  1163. export const AllDataHjtColumns = [
  1164. {
  1165. title: '监测字段',
  1166. align: 'center',
  1167. dataIndex: 'key',
  1168. key: 'key',
  1169. width: 100,
  1170. customRender: ({ text }) => fieldHjtMapping[text] || text,
  1171. },
  1172. {
  1173. title: '最大值',
  1174. dataIndex: 'value',
  1175. align: 'center',
  1176. width: 100,
  1177. key: 'value',
  1178. },
  1179. {
  1180. width: 100,
  1181. align: 'center',
  1182. title: '监测地点',
  1183. dataIndex: 'jcdd',
  1184. key: 'jcdd',
  1185. },
  1186. {
  1187. width: 100,
  1188. align: 'center',
  1189. title: '作业环境(工序)',
  1190. dataIndex: 'fczl',
  1191. key: 'fczl',
  1192. },
  1193. ];
  1194. export const AllDataBdColumns = [
  1195. {
  1196. title: '监测字段',
  1197. align: 'center',
  1198. dataIndex: 'key',
  1199. key: 'key',
  1200. width: 100,
  1201. customRender: ({ text }) => fieldBdMapping[text] || text,
  1202. },
  1203. {
  1204. title: '最大值',
  1205. dataIndex: 'value',
  1206. align: 'center',
  1207. width: 100,
  1208. key: 'value',
  1209. },
  1210. {
  1211. width: 100,
  1212. align: 'center',
  1213. title: '监测地点',
  1214. dataIndex: 'jcdd',
  1215. key: 'jcdd',
  1216. },
  1217. {
  1218. width: 100,
  1219. align: 'center',
  1220. title: '作业环境(工序)',
  1221. dataIndex: 'zyhj',
  1222. key: 'zyhj',
  1223. },
  1224. ];
  1225. export const AllDataBltColumns = [
  1226. {
  1227. title: '监测字段',
  1228. align: 'center',
  1229. dataIndex: 'key',
  1230. key: 'key',
  1231. width: 100,
  1232. customRender: ({ text }) => fieldBltMapping[text] || text,
  1233. },
  1234. {
  1235. title: '最大值',
  1236. dataIndex: 'value',
  1237. align: 'center',
  1238. width: 100,
  1239. key: 'value',
  1240. },
  1241. {
  1242. width: 100,
  1243. align: 'center',
  1244. title: '监测地点',
  1245. dataIndex: 'jcdd',
  1246. key: 'jcdd',
  1247. },
  1248. {
  1249. width: 100,
  1250. align: 'center',
  1251. title: '作业环境(工序)',
  1252. dataIndex: 'scgy',
  1253. key: 'scgy',
  1254. },
  1255. ];
  1256. export const AllDataSgtColumns = [
  1257. {
  1258. title: '监测字段',
  1259. align: 'center',
  1260. dataIndex: 'key',
  1261. key: 'key',
  1262. width: 100,
  1263. customRender: ({ text }) => fieldBltMapping[text] || text,
  1264. },
  1265. {
  1266. title: '最大值',
  1267. dataIndex: 'value',
  1268. align: 'center',
  1269. width: 100,
  1270. key: 'value',
  1271. },
  1272. {
  1273. width: 100,
  1274. align: 'center',
  1275. title: '监测地点',
  1276. dataIndex: 'jcdd',
  1277. key: 'jcdd',
  1278. },
  1279. {
  1280. width: 100,
  1281. align: 'center',
  1282. title: '作业环境(工序)',
  1283. dataIndex: 'scgy',
  1284. key: 'scgy',
  1285. },
  1286. ];
  1287. export const AllDataYjlColumns = [
  1288. {
  1289. title: '监测字段',
  1290. align: 'center',
  1291. dataIndex: 'key',
  1292. key: 'key',
  1293. width: 100,
  1294. customRender: ({ text }) => fieldYjlMapping[text] || text,
  1295. },
  1296. {
  1297. title: '最大值',
  1298. dataIndex: 'value',
  1299. align: 'center',
  1300. width: 100,
  1301. key: 'value',
  1302. },
  1303. {
  1304. width: 100,
  1305. align: 'center',
  1306. title: '监测地点',
  1307. dataIndex: 'jcdd',
  1308. key: 'jcdd',
  1309. },
  1310. {
  1311. width: 100,
  1312. align: 'center',
  1313. title: '作业环境(工序)',
  1314. dataIndex: 'zyhj',
  1315. key: 'zyhj',
  1316. },
  1317. ];
  1318. export const AllDataCctrkColumns = [
  1319. {
  1320. title: '监测字段',
  1321. align: 'center',
  1322. dataIndex: 'key',
  1323. key: 'key',
  1324. width: 100,
  1325. customRender: ({ text }) => fieldCctrkMapping[text] || text,
  1326. },
  1327. {
  1328. title: '最大值',
  1329. dataIndex: 'value',
  1330. align: 'center',
  1331. width: 100,
  1332. key: 'value',
  1333. },
  1334. {
  1335. width: 100,
  1336. align: 'center',
  1337. title: '监测地点',
  1338. dataIndex: 'jcdd',
  1339. key: 'jcdd',
  1340. },
  1341. {
  1342. width: 100,
  1343. align: 'center',
  1344. title: '作业环境(工序)',
  1345. dataIndex: 'zyhj',
  1346. key: 'zyhj',
  1347. },
  1348. ];