dust-table.data.ts 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  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. //监测字段
  515. export const fieldMapping = {
  516. sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',
  517. jx_zcds: '总尘-作业工序-检修(短时间监测浓度,mg/m³)',
  518. sc_hcds: '呼尘-作业工序-生产(短时间监测浓度,mg/m³)',
  519. jx_hcds: '呼尘-作业工序-检修(短时间监测浓度,mg/m³)',
  520. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  521. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  522. zcrxd_ds: '总尘容许浓度(短时间监测浓度,mg/m³)',
  523. zcrxd_jqpj: '总尘容许浓度(时间加权平均浓度,mg/m³)',
  524. hcrxd_ds: '呼尘容许浓度(短时间监测浓度,mg/m³)',
  525. hcrxd_jqpj: '呼尘容许浓度(时间加权平均浓度,mg/m³)',
  526. };
  527. export const fieldDltMapping = {
  528. sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',
  529. jx_zcds: '总尘-作业工序-检修(短时间监测浓度,mg/m³)',
  530. sc_hcds: '呼尘-作业工序-生产(短时间监测浓度,mg/m³)',
  531. jx_hcds: '呼尘-作业工序-检修(短时间监测浓度,mg/m³)',
  532. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  533. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  534. };
  535. export const fieldSwMapping = {
  536. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  537. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  538. };
  539. export const fieldHjtMapping = {
  540. sc_zcds: '总尘(生产期间粉尘浓度,mg/m³)',
  541. sc_hcds: '呼尘(生产期间粉尘浓度,mg/m³)',
  542. jx_zcds: '总尘(检修期间粉尘浓度,mg/m³)',
  543. jx_hcds: '呼尘(检修期间粉尘浓度,mg/m³)',
  544. zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
  545. hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
  546. };
  547. export const fieldBdMapping = {
  548. qc: '总尘(粉尘浓度,mg/m³)',
  549. hc: '呼尘(粉尘浓度,mg/m³)',
  550. };
  551. export const fieldBltMapping = {
  552. sc_zcds: '总尘(粉尘浓度,mg/m³)',
  553. sc_hcds: '呼尘(粉尘浓度,mg/m³)',
  554. };
  555. // 检测地点
  556. export const dataColumns = [
  557. {
  558. title: '监测字段',
  559. align: 'center',
  560. dataIndex: 'key',
  561. key: 'key',
  562. width: 200,
  563. customRender: ({ text }) => fieldMapping[text] || text,
  564. },
  565. {
  566. title: '最大值',
  567. dataIndex: 'value',
  568. align: 'center',
  569. width: 100,
  570. key: 'value',
  571. },
  572. {
  573. title: '工种',
  574. width: 100,
  575. dataIndex: 'gz',
  576. align: 'center',
  577. key: 'gz',
  578. },
  579. {
  580. width: 100,
  581. align: 'center',
  582. title: '监测地点',
  583. dataIndex: 'jcdd',
  584. key: 'jcdd',
  585. },
  586. {
  587. width: 100,
  588. align: 'center',
  589. title: '粉尘种类',
  590. dataIndex: 'fczl',
  591. key: 'fczl',
  592. },
  593. ];
  594. export const dataDltColumns = [
  595. {
  596. title: '监测字段',
  597. align: 'center',
  598. dataIndex: 'key',
  599. key: 'key',
  600. width: 130,
  601. customRender: ({ text }) => fieldDltMapping[text] || text,
  602. },
  603. {
  604. title: '最大值',
  605. dataIndex: 'value',
  606. align: 'center',
  607. width: 100,
  608. key: 'value',
  609. },
  610. {
  611. width: 130,
  612. align: 'center',
  613. title: '监测地点',
  614. dataIndex: 'jcdd',
  615. key: 'jcdd',
  616. },
  617. {
  618. width: 100,
  619. align: 'center',
  620. title: '粉尘种类',
  621. dataIndex: 'fczl',
  622. key: 'fczl',
  623. },
  624. ];
  625. export const dataSwColumns = [
  626. {
  627. title: '监测字段',
  628. align: 'center',
  629. dataIndex: 'key',
  630. key: 'key',
  631. width: 200,
  632. customRender: ({ text }) => fieldSwMapping[text] || text,
  633. },
  634. {
  635. title: '最大值',
  636. dataIndex: 'value',
  637. align: 'center',
  638. width: 100,
  639. key: 'value',
  640. },
  641. {
  642. width: 100,
  643. align: 'center',
  644. title: '监测地点',
  645. dataIndex: 'jcdd',
  646. key: 'jcdd',
  647. },
  648. {
  649. width: 100,
  650. align: 'center',
  651. title: '粉尘种类',
  652. dataIndex: 'fczl',
  653. key: 'fczl',
  654. },
  655. ];
  656. export const dataHjtColumns = [
  657. {
  658. title: '监测字段',
  659. align: 'center',
  660. dataIndex: 'key',
  661. key: 'key',
  662. width: 100,
  663. customRender: ({ text }) => fieldHjtMapping[text] || text,
  664. },
  665. {
  666. title: '最大值',
  667. dataIndex: 'value',
  668. align: 'center',
  669. width: 100,
  670. key: 'value',
  671. },
  672. {
  673. width: 100,
  674. align: 'center',
  675. title: '监测地点',
  676. dataIndex: 'jcdd',
  677. key: 'jcdd',
  678. },
  679. {
  680. width: 100,
  681. align: 'center',
  682. title: '作业环境(工序)',
  683. dataIndex: 'fczl',
  684. key: 'fczl',
  685. },
  686. ];
  687. export const dataBdColumns = [
  688. {
  689. title: '监测字段',
  690. align: 'center',
  691. dataIndex: 'key',
  692. key: 'key',
  693. width: 100,
  694. customRender: ({ text }) => fieldBdMapping[text] || text,
  695. },
  696. {
  697. title: '最大值',
  698. dataIndex: 'value',
  699. align: 'center',
  700. width: 100,
  701. key: 'value',
  702. },
  703. {
  704. width: 100,
  705. align: 'center',
  706. title: '监测地点',
  707. dataIndex: 'jcdd',
  708. key: 'jcdd',
  709. },
  710. {
  711. width: 100,
  712. align: 'center',
  713. title: '作业环境(工序)',
  714. dataIndex: 'zyhj',
  715. key: 'zyhj',
  716. },
  717. ];
  718. export const dataBltColumns = [
  719. {
  720. title: '监测字段',
  721. align: 'center',
  722. dataIndex: 'key',
  723. key: 'key',
  724. width: 100,
  725. customRender: ({ text }) => fieldBltMapping[text] || text,
  726. },
  727. {
  728. title: '最大值',
  729. dataIndex: 'value',
  730. align: 'center',
  731. width: 100,
  732. key: 'value',
  733. },
  734. {
  735. width: 100,
  736. align: 'center',
  737. title: '监测地点',
  738. dataIndex: 'jcdd',
  739. key: 'jcdd',
  740. },
  741. {
  742. width: 100,
  743. align: 'center',
  744. title: '作业环境(工序)',
  745. dataIndex: 'scgy',
  746. key: 'scgy',
  747. },
  748. ];
  749. // 当日情况粉尘情况分析
  750. export const AllDataColumns = [
  751. {
  752. title: '监测字段',
  753. align: 'center',
  754. dataIndex: 'key',
  755. key: 'key',
  756. width: 200,
  757. customRender: ({ text }) => fieldMapping[text] || text,
  758. },
  759. {
  760. title: '最大值',
  761. dataIndex: 'value',
  762. align: 'center',
  763. width: 100,
  764. key: 'value',
  765. },
  766. {
  767. width: 100,
  768. title: '工作场所',
  769. dataIndex: 'gzcs',
  770. align: 'center',
  771. key: 'gzcs',
  772. },
  773. {
  774. title: '工种',
  775. width: 100,
  776. dataIndex: 'gz',
  777. align: 'center',
  778. key: 'gz',
  779. },
  780. {
  781. width: 100,
  782. align: 'center',
  783. title: '监测地点',
  784. dataIndex: 'jcdd',
  785. key: 'jcdd',
  786. },
  787. {
  788. width: 100,
  789. align: 'center',
  790. title: '粉尘种类',
  791. dataIndex: 'fczl',
  792. key: 'fczl',
  793. },
  794. ];
  795. export const AllDataDltColumns = [
  796. {
  797. title: '监测字段',
  798. align: 'center',
  799. dataIndex: 'key',
  800. key: 'key',
  801. width: 130,
  802. customRender: ({ text }) => fieldDltMapping[text] || text,
  803. },
  804. {
  805. title: '最大值',
  806. dataIndex: 'value',
  807. align: 'center',
  808. width: 100,
  809. key: 'value',
  810. },
  811. {
  812. width: 130,
  813. align: 'center',
  814. title: '监测地点',
  815. dataIndex: 'jcdd',
  816. key: 'jcdd',
  817. },
  818. {
  819. width: 100,
  820. align: 'center',
  821. title: '粉尘种类',
  822. dataIndex: 'fczl',
  823. key: 'fczl',
  824. },
  825. ];
  826. export const AllDataSwColumns = [
  827. {
  828. title: '监测字段',
  829. align: 'center',
  830. dataIndex: 'key',
  831. key: 'key',
  832. width: 200,
  833. customRender: ({ text }) => fieldSwMapping[text] || text,
  834. },
  835. {
  836. title: '最大值',
  837. dataIndex: 'value',
  838. align: 'center',
  839. width: 100,
  840. key: 'value',
  841. },
  842. {
  843. width: 100,
  844. title: '工作场所',
  845. dataIndex: 'gzcs',
  846. align: 'center',
  847. key: 'gzcs',
  848. },
  849. {
  850. width: 100,
  851. align: 'center',
  852. title: '监测地点',
  853. dataIndex: 'jcdd',
  854. key: 'jcdd',
  855. },
  856. {
  857. width: 100,
  858. align: 'center',
  859. title: '粉尘种类',
  860. dataIndex: 'fczl',
  861. key: 'fczl',
  862. },
  863. ];
  864. export const AllDataHjtColumns = [
  865. {
  866. title: '监测字段',
  867. align: 'center',
  868. dataIndex: 'key',
  869. key: 'key',
  870. width: 100,
  871. customRender: ({ text }) => fieldHjtMapping[text] || text,
  872. },
  873. {
  874. title: '最大值',
  875. dataIndex: 'value',
  876. align: 'center',
  877. width: 100,
  878. key: 'value',
  879. },
  880. {
  881. width: 100,
  882. align: 'center',
  883. title: '监测地点',
  884. dataIndex: 'jcdd',
  885. key: 'jcdd',
  886. },
  887. {
  888. width: 100,
  889. align: 'center',
  890. title: '作业环境(工序)',
  891. dataIndex: 'fczl',
  892. key: 'fczl',
  893. },
  894. ];
  895. export const AllDataBdColumns = [
  896. {
  897. title: '监测字段',
  898. align: 'center',
  899. dataIndex: 'key',
  900. key: 'key',
  901. width: 100,
  902. customRender: ({ text }) => fieldBdMapping[text] || text,
  903. },
  904. {
  905. title: '最大值',
  906. dataIndex: 'value',
  907. align: 'center',
  908. width: 100,
  909. key: 'value',
  910. },
  911. {
  912. width: 100,
  913. align: 'center',
  914. title: '监测地点',
  915. dataIndex: 'jcdd',
  916. key: 'jcdd',
  917. },
  918. {
  919. width: 100,
  920. align: 'center',
  921. title: '作业环境(工序)',
  922. dataIndex: 'zyhj',
  923. key: 'zyhj',
  924. },
  925. ];
  926. export const AllDataBltColumns = [
  927. {
  928. title: '监测字段',
  929. align: 'center',
  930. dataIndex: 'key',
  931. key: 'key',
  932. width: 100,
  933. customRender: ({ text }) => fieldBltMapping[text] || text,
  934. },
  935. {
  936. title: '最大值',
  937. dataIndex: 'value',
  938. align: 'center',
  939. width: 100,
  940. key: 'value',
  941. },
  942. {
  943. width: 100,
  944. align: 'center',
  945. title: '监测地点',
  946. dataIndex: 'jcdd',
  947. key: 'jcdd',
  948. },
  949. {
  950. width: 100,
  951. align: 'center',
  952. title: '作业环境(工序)',
  953. dataIndex: 'scgy',
  954. key: 'scgy',
  955. },
  956. ];