dust-table.data.ts 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223
  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. //监测字段
  650. export const fieldMapping = {
  651. sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',
  652. jx_zcds: '总尘-作业工序-检修(短时间监测浓度,mg/m³)',
  653. sc_hcds: '呼尘-作业工序-生产(短时间监测浓度,mg/m³)',
  654. jx_hcds: '呼尘-作业工序-检修(短时间监测浓度,mg/m³)',
  655. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  656. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  657. zcrxd_ds: '总尘容许浓度(短时间监测浓度,mg/m³)',
  658. zcrxd_jqpj: '总尘容许浓度(时间加权平均浓度,mg/m³)',
  659. hcrxd_ds: '呼尘容许浓度(短时间监测浓度,mg/m³)',
  660. hcrxd_jqpj: '呼尘容许浓度(时间加权平均浓度,mg/m³)',
  661. };
  662. export const fieldDltMapping = {
  663. sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',
  664. jx_zcds: '总尘-作业工序-检修(短时间监测浓度,mg/m³)',
  665. sc_hcds: '呼尘-作业工序-生产(短时间监测浓度,mg/m³)',
  666. jx_hcds: '呼尘-作业工序-检修(短时间监测浓度,mg/m³)',
  667. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  668. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  669. };
  670. export const fieldSwMapping = {
  671. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  672. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  673. };
  674. export const fieldHjtMapping = {
  675. sc_zcds: '总尘(生产期间粉尘浓度,mg/m³)',
  676. sc_hcds: '呼尘(生产期间粉尘浓度,mg/m³)',
  677. jx_zcds: '总尘(检修期间粉尘浓度,mg/m³)',
  678. jx_hcds: '呼尘(检修期间粉尘浓度,mg/m³)',
  679. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  680. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  681. };
  682. export const fieldBdMapping = {
  683. qc: '总尘(粉尘浓度,mg/m³)',
  684. hc: '呼尘(粉尘浓度,mg/m³)',
  685. };
  686. export const fieldBltMapping = {
  687. sc_zcds: '总尘(粉尘浓度,mg/m³)',
  688. sc_hcds: '呼尘(粉尘浓度,mg/m³)',
  689. };
  690. export const fieldSgtMapping = {
  691. sc_zcds: '全尘(粉尘浓度,mg/m³)',
  692. sc_hcds: '呼尘(粉尘浓度,mg/m³)',
  693. };
  694. export const fieldYjlMapping = {
  695. zcfcnd: '总粉尘(粉尘浓度,mg/m³)',
  696. hcfcnd: '呼尘(粉尘浓度,mg/m³)',
  697. };
  698. // 检测地点
  699. export const dataColumns = [
  700. {
  701. title: '监测字段',
  702. align: 'center',
  703. dataIndex: 'key',
  704. key: 'key',
  705. width: 200,
  706. customRender: ({ text }) => fieldMapping[text] || text,
  707. },
  708. {
  709. title: '最大值',
  710. dataIndex: 'value',
  711. align: 'center',
  712. width: 100,
  713. key: 'value',
  714. },
  715. {
  716. title: '工种',
  717. width: 100,
  718. dataIndex: 'gz',
  719. align: 'center',
  720. key: 'gz',
  721. },
  722. {
  723. width: 100,
  724. align: 'center',
  725. title: '监测地点',
  726. dataIndex: 'jcdd',
  727. key: 'jcdd',
  728. },
  729. {
  730. width: 100,
  731. align: 'center',
  732. title: '粉尘种类',
  733. dataIndex: 'fczl',
  734. key: 'fczl',
  735. },
  736. ];
  737. export const dataDltColumns = [
  738. {
  739. title: '监测字段',
  740. align: 'center',
  741. dataIndex: 'key',
  742. key: 'key',
  743. width: 130,
  744. customRender: ({ text }) => fieldDltMapping[text] || text,
  745. },
  746. {
  747. title: '最大值',
  748. dataIndex: 'value',
  749. align: 'center',
  750. width: 100,
  751. key: 'value',
  752. },
  753. {
  754. width: 130,
  755. align: 'center',
  756. title: '监测地点',
  757. dataIndex: 'jcdd',
  758. key: 'jcdd',
  759. },
  760. {
  761. width: 100,
  762. align: 'center',
  763. title: '粉尘种类',
  764. dataIndex: 'fczl',
  765. key: 'fczl',
  766. },
  767. ];
  768. export const dataSwColumns = [
  769. {
  770. title: '监测字段',
  771. align: 'center',
  772. dataIndex: 'key',
  773. key: 'key',
  774. width: 200,
  775. customRender: ({ text }) => fieldSwMapping[text] || text,
  776. },
  777. {
  778. title: '最大值',
  779. dataIndex: 'value',
  780. align: 'center',
  781. width: 100,
  782. key: 'value',
  783. },
  784. {
  785. width: 100,
  786. align: 'center',
  787. title: '监测地点',
  788. dataIndex: 'jcdd',
  789. key: 'jcdd',
  790. },
  791. {
  792. width: 100,
  793. align: 'center',
  794. title: '粉尘种类',
  795. dataIndex: 'fczl',
  796. key: 'fczl',
  797. },
  798. ];
  799. export const dataHjtColumns = [
  800. {
  801. title: '监测字段',
  802. align: 'center',
  803. dataIndex: 'key',
  804. key: 'key',
  805. width: 100,
  806. customRender: ({ text }) => fieldHjtMapping[text] || text,
  807. },
  808. {
  809. title: '最大值',
  810. dataIndex: 'value',
  811. align: 'center',
  812. width: 100,
  813. key: 'value',
  814. },
  815. {
  816. width: 100,
  817. align: 'center',
  818. title: '监测地点',
  819. dataIndex: 'jcdd',
  820. key: 'jcdd',
  821. },
  822. {
  823. width: 100,
  824. align: 'center',
  825. title: '作业环境(工序)',
  826. dataIndex: 'fczl',
  827. key: 'fczl',
  828. },
  829. ];
  830. export const dataBdColumns = [
  831. {
  832. title: '监测字段',
  833. align: 'center',
  834. dataIndex: 'key',
  835. key: 'key',
  836. width: 100,
  837. customRender: ({ text }) => fieldBdMapping[text] || text,
  838. },
  839. {
  840. title: '最大值',
  841. dataIndex: 'value',
  842. align: 'center',
  843. width: 100,
  844. key: 'value',
  845. },
  846. {
  847. width: 100,
  848. align: 'center',
  849. title: '监测地点',
  850. dataIndex: 'jcdd',
  851. key: 'jcdd',
  852. },
  853. {
  854. width: 100,
  855. align: 'center',
  856. title: '作业环境(工序)',
  857. dataIndex: 'zyhj',
  858. key: 'zyhj',
  859. },
  860. ];
  861. export const dataBltColumns = [
  862. {
  863. title: '监测字段',
  864. align: 'center',
  865. dataIndex: 'key',
  866. key: 'key',
  867. width: 100,
  868. customRender: ({ text }) => fieldBltMapping[text] || text,
  869. },
  870. {
  871. title: '最大值',
  872. dataIndex: 'value',
  873. align: 'center',
  874. width: 100,
  875. key: 'value',
  876. },
  877. {
  878. width: 100,
  879. align: 'center',
  880. title: '监测地点',
  881. dataIndex: 'jcdd',
  882. key: 'jcdd',
  883. },
  884. {
  885. width: 100,
  886. align: 'center',
  887. title: '作业环境(工序)',
  888. dataIndex: 'scgy',
  889. key: 'scgy',
  890. },
  891. ];
  892. export const dataSgtColumns = [
  893. {
  894. title: '监测字段',
  895. align: 'center',
  896. dataIndex: 'key',
  897. key: 'key',
  898. width: 100,
  899. customRender: ({ text }) => fieldBltMapping[text] || text,
  900. },
  901. {
  902. title: '最大值',
  903. dataIndex: 'value',
  904. align: 'center',
  905. width: 100,
  906. key: 'value',
  907. },
  908. {
  909. width: 100,
  910. align: 'center',
  911. title: '监测地点',
  912. dataIndex: 'jcdd',
  913. key: 'jcdd',
  914. },
  915. {
  916. width: 100,
  917. align: 'center',
  918. title: '作业环境(工序)',
  919. dataIndex: 'scgy',
  920. key: 'scgy',
  921. },
  922. ];
  923. export const dataYjlColumns = [
  924. {
  925. title: '监测字段',
  926. align: 'center',
  927. dataIndex: 'key',
  928. key: 'key',
  929. width: 100,
  930. customRender: ({ text }) => fieldYjlMapping[text] || text,
  931. },
  932. {
  933. title: '最大值',
  934. dataIndex: 'value',
  935. align: 'center',
  936. width: 100,
  937. key: 'value',
  938. },
  939. {
  940. width: 100,
  941. align: 'center',
  942. title: '监测地点',
  943. dataIndex: 'jcdd',
  944. key: 'jcdd',
  945. },
  946. {
  947. width: 100,
  948. align: 'center',
  949. title: '作业环境(工序)',
  950. dataIndex: 'zyhj',
  951. key: 'zyhj',
  952. },
  953. ];
  954. // 当日情况粉尘情况分析
  955. export const AllDataColumns = [
  956. {
  957. title: '监测字段',
  958. align: 'center',
  959. dataIndex: 'key',
  960. key: 'key',
  961. width: 200,
  962. customRender: ({ text }) => fieldMapping[text] || text,
  963. },
  964. {
  965. title: '最大值',
  966. dataIndex: 'value',
  967. align: 'center',
  968. width: 100,
  969. key: 'value',
  970. },
  971. {
  972. width: 100,
  973. title: '工作场所',
  974. dataIndex: 'gzcs',
  975. align: 'center',
  976. key: 'gzcs',
  977. },
  978. {
  979. title: '工种',
  980. width: 100,
  981. dataIndex: 'gz',
  982. align: 'center',
  983. key: 'gz',
  984. },
  985. {
  986. width: 100,
  987. align: 'center',
  988. title: '监测地点',
  989. dataIndex: 'jcdd',
  990. key: 'jcdd',
  991. },
  992. {
  993. width: 100,
  994. align: 'center',
  995. title: '粉尘种类',
  996. dataIndex: 'fczl',
  997. key: 'fczl',
  998. },
  999. ];
  1000. export const AllDataDltColumns = [
  1001. {
  1002. title: '监测字段',
  1003. align: 'center',
  1004. dataIndex: 'key',
  1005. key: 'key',
  1006. width: 130,
  1007. customRender: ({ text }) => fieldDltMapping[text] || text,
  1008. },
  1009. {
  1010. title: '最大值',
  1011. dataIndex: 'value',
  1012. align: 'center',
  1013. width: 100,
  1014. key: 'value',
  1015. },
  1016. {
  1017. width: 130,
  1018. align: 'center',
  1019. title: '监测地点',
  1020. dataIndex: 'jcdd',
  1021. key: 'jcdd',
  1022. },
  1023. {
  1024. width: 100,
  1025. align: 'center',
  1026. title: '粉尘种类',
  1027. dataIndex: 'fczl',
  1028. key: 'fczl',
  1029. },
  1030. ];
  1031. export const AllDataSwColumns = [
  1032. {
  1033. title: '监测字段',
  1034. align: 'center',
  1035. dataIndex: 'key',
  1036. key: 'key',
  1037. width: 200,
  1038. customRender: ({ text }) => fieldSwMapping[text] || text,
  1039. },
  1040. {
  1041. title: '最大值',
  1042. dataIndex: 'value',
  1043. align: 'center',
  1044. width: 100,
  1045. key: 'value',
  1046. },
  1047. {
  1048. width: 100,
  1049. title: '工作场所',
  1050. dataIndex: 'gzcs',
  1051. align: 'center',
  1052. key: 'gzcs',
  1053. },
  1054. {
  1055. width: 100,
  1056. align: 'center',
  1057. title: '监测地点',
  1058. dataIndex: 'jcdd',
  1059. key: 'jcdd',
  1060. },
  1061. {
  1062. width: 100,
  1063. align: 'center',
  1064. title: '粉尘种类',
  1065. dataIndex: 'fczl',
  1066. key: 'fczl',
  1067. },
  1068. ];
  1069. export const AllDataHjtColumns = [
  1070. {
  1071. title: '监测字段',
  1072. align: 'center',
  1073. dataIndex: 'key',
  1074. key: 'key',
  1075. width: 100,
  1076. customRender: ({ text }) => fieldHjtMapping[text] || text,
  1077. },
  1078. {
  1079. title: '最大值',
  1080. dataIndex: 'value',
  1081. align: 'center',
  1082. width: 100,
  1083. key: 'value',
  1084. },
  1085. {
  1086. width: 100,
  1087. align: 'center',
  1088. title: '监测地点',
  1089. dataIndex: 'jcdd',
  1090. key: 'jcdd',
  1091. },
  1092. {
  1093. width: 100,
  1094. align: 'center',
  1095. title: '作业环境(工序)',
  1096. dataIndex: 'fczl',
  1097. key: 'fczl',
  1098. },
  1099. ];
  1100. export const AllDataBdColumns = [
  1101. {
  1102. title: '监测字段',
  1103. align: 'center',
  1104. dataIndex: 'key',
  1105. key: 'key',
  1106. width: 100,
  1107. customRender: ({ text }) => fieldBdMapping[text] || text,
  1108. },
  1109. {
  1110. title: '最大值',
  1111. dataIndex: 'value',
  1112. align: 'center',
  1113. width: 100,
  1114. key: 'value',
  1115. },
  1116. {
  1117. width: 100,
  1118. align: 'center',
  1119. title: '监测地点',
  1120. dataIndex: 'jcdd',
  1121. key: 'jcdd',
  1122. },
  1123. {
  1124. width: 100,
  1125. align: 'center',
  1126. title: '作业环境(工序)',
  1127. dataIndex: 'zyhj',
  1128. key: 'zyhj',
  1129. },
  1130. ];
  1131. export const AllDataBltColumns = [
  1132. {
  1133. title: '监测字段',
  1134. align: 'center',
  1135. dataIndex: 'key',
  1136. key: 'key',
  1137. width: 100,
  1138. customRender: ({ text }) => fieldBltMapping[text] || text,
  1139. },
  1140. {
  1141. title: '最大值',
  1142. dataIndex: 'value',
  1143. align: 'center',
  1144. width: 100,
  1145. key: 'value',
  1146. },
  1147. {
  1148. width: 100,
  1149. align: 'center',
  1150. title: '监测地点',
  1151. dataIndex: 'jcdd',
  1152. key: 'jcdd',
  1153. },
  1154. {
  1155. width: 100,
  1156. align: 'center',
  1157. title: '作业环境(工序)',
  1158. dataIndex: 'scgy',
  1159. key: 'scgy',
  1160. },
  1161. ];
  1162. export const AllDataSgtColumns = [
  1163. {
  1164. title: '监测字段',
  1165. align: 'center',
  1166. dataIndex: 'key',
  1167. key: 'key',
  1168. width: 100,
  1169. customRender: ({ text }) => fieldBltMapping[text] || text,
  1170. },
  1171. {
  1172. title: '最大值',
  1173. dataIndex: 'value',
  1174. align: 'center',
  1175. width: 100,
  1176. key: 'value',
  1177. },
  1178. {
  1179. width: 100,
  1180. align: 'center',
  1181. title: '监测地点',
  1182. dataIndex: 'jcdd',
  1183. key: 'jcdd',
  1184. },
  1185. {
  1186. width: 100,
  1187. align: 'center',
  1188. title: '作业环境(工序)',
  1189. dataIndex: 'scgy',
  1190. key: 'scgy',
  1191. },
  1192. ];
  1193. export const AllDataYjlColumns = [
  1194. {
  1195. title: '监测字段',
  1196. align: 'center',
  1197. dataIndex: 'key',
  1198. key: 'key',
  1199. width: 100,
  1200. customRender: ({ text }) => fieldYjlMapping[text] || text,
  1201. },
  1202. {
  1203. title: '最大值',
  1204. dataIndex: 'value',
  1205. align: 'center',
  1206. width: 100,
  1207. key: 'value',
  1208. },
  1209. {
  1210. width: 100,
  1211. align: 'center',
  1212. title: '监测地点',
  1213. dataIndex: 'jcdd',
  1214. key: 'jcdd',
  1215. },
  1216. {
  1217. width: 100,
  1218. align: 'center',
  1219. title: '作业环境(工序)',
  1220. dataIndex: 'zyhj',
  1221. key: 'zyhj',
  1222. },
  1223. ];