bundleSpy-table.data.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. {
  4. title: '序号',
  5. width: 60,
  6. align: 'center',
  7. dataIndex: 'xh',
  8. key: 'xh',
  9. },
  10. {
  11. title: '采样地点',
  12. dataIndex: 'jcdd',
  13. key: 'jcdd',
  14. width: 100,
  15. align: 'center',
  16. },
  17. {
  18. title: '取样分析时间',
  19. dataIndex: 'qyfxsj',
  20. key: 'qyfxsj',
  21. width: 100,
  22. align: 'center',
  23. },
  24. {
  25. title: 'O₂(%)',
  26. dataIndex: 'o2_ave',
  27. key: 'o2_ave',
  28. width: 100,
  29. align: 'center',
  30. },
  31. {
  32. title: 'N₂(%)',
  33. dataIndex: 'n2_ave',
  34. key: 'n2_ave',
  35. width: 100,
  36. align: 'center',
  37. },
  38. {
  39. title: 'CO(%)',
  40. dataIndex: 'co_ave',
  41. key: 'co_ave',
  42. width: 100,
  43. align: 'center',
  44. },
  45. {
  46. title: 'CO₂(%)',
  47. dataIndex: 'co2_ave',
  48. key: 'co2_ave',
  49. width: 100,
  50. align: 'center',
  51. },
  52. {
  53. title: 'CH₄(%)',
  54. dataIndex: 'ch4_ave',
  55. key: 'ch4_ave',
  56. width: 100,
  57. align: 'center',
  58. },
  59. {
  60. title: 'C2H6(%)',
  61. dataIndex: 'c2h6_ave',
  62. key: 'c2h6_ave',
  63. width: 100,
  64. align: 'center',
  65. },
  66. {
  67. title: 'C₂H₄(%)',
  68. dataIndex: 'c2h4_ave',
  69. key: 'c2h4_ave',
  70. width: 100,
  71. align: 'center',
  72. },
  73. {
  74. title: 'C₂H₂(%)',
  75. dataIndex: 'c2h2_ave',
  76. key: 'c2h2_ave',
  77. width: 100,
  78. align: 'center',
  79. },
  80. {
  81. title: '总组分含量',
  82. dataIndex: 'zzfhl_ave',
  83. key: 'zzfhl_ave',
  84. width: 100,
  85. align: 'center',
  86. },
  87. {
  88. title: '煤自燃阶段',
  89. dataIndex: 'internalFireWarnLevel',
  90. width: 100,
  91. align: 'center',
  92. },
  93. {
  94. title: '操作',
  95. dataIndex: 'action',
  96. width: 100,
  97. align: 'center',
  98. },
  99. ];
  100. export const Hjtcolumns: BasicColumn[] = [
  101. {
  102. title: '序号',
  103. width: 60,
  104. align: 'center',
  105. dataIndex: 'xh',
  106. key: 'xh',
  107. },
  108. {
  109. title: '采空区名称',
  110. dataIndex: 'ckqmc',
  111. key: 'ckqmc',
  112. width: 100,
  113. align: 'center',
  114. },
  115. {
  116. title: '检查地点',
  117. dataIndex: 'jcdd',
  118. key: 'jcdd',
  119. width: 100,
  120. align: 'center',
  121. },
  122. {
  123. title: '闭内',
  124. children: [
  125. {
  126. title: 'CH₄(%)',
  127. dataIndex: 'ch4_ave',
  128. key: 'ch4_ave',
  129. width: 100,
  130. align: 'center',
  131. },
  132. {
  133. title: 'O₂(%)',
  134. dataIndex: 'o2_ave',
  135. key: 'o2_ave',
  136. width: 100,
  137. align: 'center',
  138. },
  139. {
  140. title: 'CO(%)',
  141. dataIndex: 'co_ave',
  142. key: 'co_ave',
  143. width: 100,
  144. align: 'center',
  145. },
  146. {
  147. title: 'CO₂(%)',
  148. dataIndex: 'co2_ave',
  149. key: 'co2_ave',
  150. width: 100,
  151. align: 'center',
  152. },
  153. {
  154. title: '气温(℃)',
  155. dataIndex: 'qw',
  156. key: 'qw',
  157. width: 100,
  158. align: 'center',
  159. },
  160. {
  161. title: '水温(℃)',
  162. dataIndex: 'sw',
  163. key: 'sw',
  164. width: 100,
  165. align: 'center',
  166. },
  167. {
  168. title: '压差(Pa)',
  169. dataIndex: 'yc',
  170. key: 'yc',
  171. width: 100,
  172. align: 'center',
  173. },
  174. ],
  175. },
  176. {
  177. title: '闭前',
  178. children: [
  179. {
  180. title: 'CH₄(%)',
  181. dataIndex: 'ch4_ave_bq',
  182. key: 'ch4_ave_bq',
  183. width: 100,
  184. align: 'center',
  185. },
  186. {
  187. title: 'O₂(%)',
  188. dataIndex: 'o2_ave_bq',
  189. key: 'o2_ave_bq',
  190. width: 100,
  191. align: 'center',
  192. },
  193. ],
  194. },
  195. {
  196. title: '观测孔风流方向',
  197. dataIndex: 'gckflfx',
  198. key: 'gckflfx',
  199. width: 100,
  200. align: 'center',
  201. },
  202. {
  203. title: '密闭完好情况',
  204. dataIndex: 'mbwhqk',
  205. key: 'mbwhqk',
  206. width: 100,
  207. align: 'center',
  208. },
  209. {
  210. title: '备注',
  211. dataIndex: 'smark',
  212. key: 'smark',
  213. width: 100,
  214. align: 'center',
  215. },
  216. {
  217. title: '煤自燃阶段',
  218. dataIndex: 'internalFireWarnLevel',
  219. width: 100,
  220. align: 'center',
  221. },
  222. {
  223. title: '操作',
  224. dataIndex: 'action',
  225. width: 100,
  226. align: 'center',
  227. },
  228. ];
  229. export const Bdcolumns: BasicColumn[] = [
  230. {
  231. title: '序号',
  232. width: 60,
  233. align: 'center',
  234. dataIndex: 'xh',
  235. key: 'xh',
  236. },
  237. {
  238. title: '采空区名称',
  239. dataIndex: 'ckqmc',
  240. key: 'ckqmc',
  241. width: 100,
  242. align: 'center',
  243. },
  244. {
  245. title: '采样地点',
  246. dataIndex: 'jcdd',
  247. key: 'jcdd',
  248. width: 100,
  249. align: 'center',
  250. },
  251. {
  252. title: '采样时间',
  253. dataIndex: 'cysj',
  254. key: 'cysj',
  255. width: 100,
  256. align: 'center',
  257. },
  258. {
  259. title: '分析时间',
  260. dataIndex: 'fxsj',
  261. key: 'fxsj',
  262. width: 100,
  263. align: 'center',
  264. },
  265. {
  266. title: '气体分析结果表',
  267. children: [
  268. {
  269. title: '氧气(O₂%)',
  270. dataIndex: 'o2_ave',
  271. key: 'o2_ave',
  272. width: 100,
  273. align: 'center',
  274. },
  275. {
  276. title: '氮气(N₂%)',
  277. dataIndex: 'n2_ave',
  278. key: 'n2_ave',
  279. width: 100,
  280. align: 'center',
  281. },
  282. {
  283. title: '一氧化碳(CO%)',
  284. dataIndex: 'co_ave',
  285. key: 'co_ave',
  286. width: 100,
  287. align: 'center',
  288. },
  289. {
  290. title: '二氧化碳(CO₂%)',
  291. dataIndex: 'co2_ave',
  292. key: 'co2_ave',
  293. width: 100,
  294. align: 'center',
  295. },
  296. {
  297. title: '甲烷(CH₄%)',
  298. dataIndex: 'ch4_ave',
  299. key: 'ch4_ave',
  300. width: 100,
  301. align: 'center',
  302. },
  303. {
  304. title: '乙烷(C2H6%)',
  305. dataIndex: 'c2h6_ave',
  306. key: 'c2h6_ave',
  307. width: 100,
  308. align: 'center',
  309. },
  310. {
  311. title: '丙烷(C3H8%)',
  312. dataIndex: 'c3h8_ave',
  313. key: 'c3h8_ave',
  314. width: 100,
  315. align: 'center',
  316. },
  317. {
  318. title: '乙烯(C₂H₄%)',
  319. dataIndex: 'c2h4_ave',
  320. key: 'c2h4_ave',
  321. width: 100,
  322. align: 'center',
  323. },
  324. {
  325. title: '乙炔(C₂H₂%)',
  326. dataIndex: 'c2h2_ave',
  327. key: 'c2h2_ave',
  328. width: 100,
  329. align: 'center',
  330. },
  331. {
  332. title: '合计',
  333. dataIndex: 'zzfhl_ave',
  334. key: 'zzfhl_ave',
  335. width: 100,
  336. align: 'center',
  337. },
  338. ],
  339. },
  340. {
  341. title: '煤自燃阶段',
  342. dataIndex: 'internalFireWarnLevel',
  343. width: 100,
  344. align: 'center',
  345. },
  346. {
  347. title: '进出风状态',
  348. dataIndex: 'jcfzt',
  349. width: 100,
  350. align: 'center',
  351. },
  352. {
  353. title: '操作',
  354. dataIndex: 'action',
  355. width: 100,
  356. align: 'center',
  357. },
  358. ];
  359. export const Bltcolumns: BasicColumn[] = [
  360. {
  361. title: '编号',
  362. width: 60,
  363. align: 'center',
  364. dataIndex: 'xh',
  365. key: 'xh',
  366. },
  367. {
  368. title: '采样区域',
  369. width: 60,
  370. align: 'center',
  371. dataIndex: 'cyqy',
  372. key: 'cyqy',
  373. },
  374. {
  375. title: '采空区',
  376. dataIndex: 'ckq',
  377. key: 'ckq',
  378. width: 100,
  379. align: 'center',
  380. },
  381. {
  382. title: '采样地点',
  383. dataIndex: 'jcdd',
  384. key: 'jcdd',
  385. width: 100,
  386. align: 'center',
  387. },
  388. {
  389. title: '水温(℃)',
  390. dataIndex: 'sw',
  391. key: 'sw',
  392. width: 100,
  393. align: 'center',
  394. },
  395. {
  396. title: '气温(℃)',
  397. dataIndex: 'qw',
  398. key: 'qw',
  399. width: 100,
  400. align: 'center',
  401. },
  402. {
  403. title: '气流状态',
  404. dataIndex: 'qlzt',
  405. key: 'qlzt',
  406. width: 100,
  407. align: 'center',
  408. },
  409. {
  410. title: '压差(Pa)',
  411. dataIndex: 'yc',
  412. key: 'yc',
  413. width: 100,
  414. align: 'center',
  415. },
  416. {
  417. title: '气体分析结果表',
  418. children: [
  419. {
  420. title: '便携仪O₂(%)',
  421. dataIndex: 'o2_bxyy',
  422. key: 'o2_bxyy',
  423. width: 100,
  424. align: 'center',
  425. },
  426. {
  427. title: '色谱仪O₂(%)',
  428. dataIndex: 'o2_ave',
  429. key: 'o2_ave',
  430. width: 100,
  431. align: 'center',
  432. },
  433. {
  434. title: '便携仪CO(CO%)',
  435. dataIndex: 'co_bxy',
  436. key: 'co_bxy',
  437. width: 100,
  438. align: 'center',
  439. },
  440. {
  441. title: '色谱仪CO(%)',
  442. dataIndex: 'co_ave',
  443. key: 'co_ave',
  444. width: 100,
  445. align: 'center',
  446. },
  447. {
  448. title: '二氧化碳(CO₂%)',
  449. dataIndex: 'co2_ave',
  450. key: 'co2_ave',
  451. width: 100,
  452. align: 'center',
  453. },
  454. {
  455. title: 'N₂(%)',
  456. dataIndex: 'n2_ave',
  457. key: 'n2_ave',
  458. width: 100,
  459. align: 'center',
  460. },
  461. {
  462. title: 'CH₄(%)',
  463. dataIndex: 'ch4_ave',
  464. key: 'ch4_ave',
  465. width: 100,
  466. align: 'center',
  467. },
  468. {
  469. title: 'C2H6(%)',
  470. dataIndex: 'c2h6_ave',
  471. key: 'c2h6_ave',
  472. width: 100,
  473. align: 'center',
  474. },
  475. {
  476. title: 'C₂H₄(%)',
  477. dataIndex: 'c2h4_ave',
  478. key: 'c2h4_ave',
  479. width: 100,
  480. align: 'center',
  481. },
  482. {
  483. title: 'C₂H₂(%)',
  484. dataIndex: 'c2h2_ave',
  485. key: 'c2h2_ave',
  486. width: 100,
  487. align: 'center',
  488. },
  489. ],
  490. },
  491. {
  492. title: '采样日期',
  493. dataIndex: 'cyfxsj',
  494. key: 'cyfxsj',
  495. width: 100,
  496. align: 'center',
  497. },
  498. {
  499. title: '采样时间',
  500. dataIndex: 'cyfxsj2',
  501. key: 'cyfxsj2',
  502. width: 100,
  503. align: 'center',
  504. },
  505. {
  506. title: '采样人',
  507. dataIndex: 'cyr',
  508. key: 'cyr',
  509. width: 100,
  510. align: 'center',
  511. },
  512. {
  513. title: '煤自燃阶段',
  514. dataIndex: 'internalFireWarnLevel',
  515. width: 100,
  516. align: 'center',
  517. },
  518. {
  519. title: '进出风状态',
  520. dataIndex: 'jcfzt',
  521. width: 100,
  522. align: 'center',
  523. },
  524. {
  525. title: '操作',
  526. dataIndex: 'action',
  527. width: 100,
  528. align: 'center',
  529. },
  530. ];
  531. export const Sgtcolumns: BasicColumn[] = [
  532. {
  533. title: '序号',
  534. width: 60,
  535. align: 'center',
  536. dataIndex: 'xh',
  537. key: 'xh',
  538. },
  539. {
  540. title: '采样地点',
  541. dataIndex: 'jcdd',
  542. key: 'jcdd',
  543. width: 100,
  544. align: 'center',
  545. },
  546. {
  547. title: '采空区',
  548. dataIndex: 'ckq',
  549. key: 'ckq',
  550. width: 100,
  551. align: 'center',
  552. },
  553. {
  554. title: '采样时间',
  555. dataIndex: 'qyfxsj',
  556. key: 'qyfxsj',
  557. width: 100,
  558. align: 'center',
  559. },
  560. {
  561. title: 'O₂(%)',
  562. dataIndex: 'o2_ave',
  563. key: 'o2_ave',
  564. width: 100,
  565. align: 'center',
  566. },
  567. {
  568. title: 'N₂(%)',
  569. dataIndex: 'n2_ave',
  570. key: 'n2_ave',
  571. width: 100,
  572. align: 'center',
  573. },
  574. {
  575. title: 'CO(%)',
  576. dataIndex: 'co_ave',
  577. key: 'co_ave',
  578. width: 100,
  579. align: 'center',
  580. },
  581. {
  582. title: 'CO₂(%)',
  583. dataIndex: 'co2_ave',
  584. key: 'co2_ave',
  585. width: 100,
  586. align: 'center',
  587. },
  588. {
  589. title: 'CH₄(%)',
  590. dataIndex: 'ch4_ave',
  591. key: 'ch4_ave',
  592. width: 100,
  593. align: 'center',
  594. },
  595. {
  596. title: 'C2H6(%)',
  597. dataIndex: 'c2h6_ave',
  598. key: 'c2h6_ave',
  599. width: 100,
  600. align: 'center',
  601. },
  602. {
  603. title: 'C₂H₄(%)',
  604. dataIndex: 'c2h4_ave',
  605. key: 'c2h4_ave',
  606. width: 100,
  607. align: 'center',
  608. },
  609. {
  610. title: 'C₂H₂(%)',
  611. dataIndex: 'c2h2_ave',
  612. key: 'c2h2_ave',
  613. width: 100,
  614. align: 'center',
  615. },
  616. {
  617. title: '取样人',
  618. dataIndex: 'qyr',
  619. key: 'qyr',
  620. width: 100,
  621. align: 'center',
  622. },
  623. {
  624. title: '备注',
  625. dataIndex: 'smark',
  626. key: 'smark',
  627. width: 100,
  628. align: 'center',
  629. },
  630. {
  631. title: '煤自燃阶段',
  632. dataIndex: 'internalFireWarnLevel',
  633. width: 100,
  634. align: 'center',
  635. },
  636. {
  637. title: '操作',
  638. dataIndex: 'action',
  639. width: 100,
  640. align: 'center',
  641. },
  642. ];