billboard.data.ts 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831
  1. import leftImg from '/@/assets/images/files/homes/file.svg';
  2. import rightImg from '/@/assets/images/files/homes/sp.svg';
  3. import GasIcon from '/@/assets/images/vent/gas-icon-2.png';
  4. import FireIcon from '/@/assets/images/vent/fire-icon-2.png';
  5. import VentIcon from '/@/assets/images/vent/vent-icon-2.png';
  6. import SafetyIcon from '/@/assets/images/vent/safety-icon-2.png';
  7. import DustIcon from '/@/assets/images/vent/dust-icon-2.png';
  8. import NetworkIcon from '/@/assets/images/vent/dust-risk-icon-1.png';
  9. import DeviceIcon from '/@/assets/images/vent/dust-risk-icon-2.png';
  10. import LevelChartIcon from '/@/assets/images/vent/dust-risk-icon-3.png';
  11. import PointIcon from '/@/assets/images/vent/dust-risk-icon-4.png';
  12. import AlertIcon from '/@/assets/images/vent/dust-risk-icon-5.png';
  13. // export type Translation = Record<string | number, string>;
  14. // export interface TitleConfig {
  15. // label: string;
  16. // prop: string;
  17. // translation?: Translation;
  18. // }
  19. // export interface HeaderConfig {
  20. // label: string;
  21. // prop: string;
  22. // translation?: Translation;
  23. // }
  24. // export interface TableConfig {
  25. // prop: string;
  26. // columns: { label: string; prop: string; _t?: boolean }[];
  27. // collapses: { label: string; prop: string; _t?: boolean }[];
  28. // translation?: Translation;
  29. // }
  30. // export interface ListConfig {
  31. // icon: string;
  32. // label: string;
  33. // prop: string;
  34. // translation?: Translation;
  35. // collapses: { label: string; prop: string; _t?: boolean }[];
  36. // }
  37. // export interface OverviewConfig {
  38. // label: string;
  39. // prop: string;
  40. // src: string;
  41. // }
  42. // export interface TreeConfig {
  43. // prefix: string;
  44. // prop: string;
  45. // suffix: string;
  46. // children: {
  47. // prefix: string;
  48. // prop: string;
  49. // suffix: string;
  50. // }[];
  51. // translation?: Record<string | number, string>;
  52. // }
  53. // /** 看板的总配置 */
  54. // export const BillboardConfig: {
  55. // DustStatus: {
  56. // title: TitleConfig;
  57. // table: TableConfig;
  58. // };
  59. // FileOverview: {
  60. // contents: OverviewConfig[];
  61. // };
  62. // FireStatus: {
  63. // title: TitleConfig;
  64. // lists: ListConfig[];
  65. // };
  66. // GasStauts: {
  67. // headers: HeaderConfig[];
  68. // table: TableConfig;
  69. // };
  70. // Summary: {
  71. // headers: HeaderConfig[];
  72. // table: TableConfig;
  73. // };
  74. // VentilationStauts: {
  75. // headers: HeaderConfig[];
  76. // tree: TreeConfig;
  77. // };
  78. // Warning: {
  79. // contents: OverviewConfig[];
  80. // };
  81. // } = {
  82. // DustStatus: {
  83. // title: {
  84. // text: '',
  85. // prop: '',
  86. // translation: {},
  87. // },
  88. // table: {
  89. // columns: [{ label: '', prop: '' }],
  90. // collapses: [{ label: '', prop: '' }],
  91. // translation: {},
  92. // },
  93. // },
  94. // FileOverview: {
  95. // content: [
  96. // { src: leftImg, text: '文档总数', prop: 'totalNum' },
  97. // { src: rightImg, text: '待审批数', prop: 'approvalNum' },
  98. // ],
  99. // },
  100. // FireStatus: {
  101. // title: {
  102. // text: '',
  103. // prop: '',
  104. // translation: {},
  105. // },
  106. // list: [
  107. // {
  108. // icon: '',
  109. // label: '',
  110. // prop: '',
  111. // type: '',
  112. // translation: {},
  113. // collapses: [{ label: '', prop: '' }],
  114. // },
  115. // ],
  116. // },
  117. // GasStatus: {
  118. // header: [
  119. // {
  120. // label: '',
  121. // prop: '',
  122. // translation: {},
  123. // },
  124. // ],
  125. // table: {
  126. // columns: [],
  127. // collapses: [],
  128. // translation: {},
  129. // },
  130. // },
  131. // Summary: {
  132. // header: [
  133. // {
  134. // label: '',
  135. // prop: '',
  136. // translation: {},
  137. // },
  138. // ],
  139. // table: {
  140. // columns: [],
  141. // translation: {},
  142. // },
  143. // },
  144. // VentilationStatus: {
  145. // header: [
  146. // {
  147. // label: '',
  148. // prop: '',
  149. // filte: '',
  150. // translation: {},
  151. // },
  152. // ],
  153. // tree: {
  154. // prefix: '',
  155. // prop: 'strname',
  156. // suffix: '',
  157. // children: [
  158. // {
  159. // prefix: '名称:',
  160. // prop: 'strinstallpos',
  161. // suffix: '',
  162. // },
  163. // {
  164. // prefix: '1号风机风量:',
  165. // prop: 'Fan1m3',
  166. // suffix: '(m³/min)',
  167. // },
  168. // {
  169. // prefix: '2号风机风量:',
  170. // prop: 'Fan2m3',
  171. // suffix: '(m³/min)',
  172. // },
  173. // {
  174. // prefix: '频率:',
  175. // prop: 'FanFreqHz',
  176. // suffix: 'Hz',
  177. // },
  178. // {
  179. // prefix: '三区阻力分布:',
  180. // prop: 'sqzlfb',
  181. // suffix: '',
  182. // },
  183. // ],
  184. // },
  185. // },
  186. // Warning: {
  187. // content: [
  188. // { src: leftImg, text: '文档总数', prop: 'totalNum' },
  189. // { src: rightImg, text: '待审批数', prop: 'approvalNum' },
  190. // ],
  191. // },
  192. // };
  193. // 基础的表格列配置,针对普通设备
  194. export const GAS_STATUS_COLUMN = [
  195. {
  196. name: '设备类型',
  197. prop: 'typeName',
  198. },
  199. {
  200. name: '监测数量',
  201. prop: 'num',
  202. },
  203. {
  204. name: '当前状态',
  205. prop: 'warnLevelStr',
  206. },
  207. ];
  208. /** 瓦斯监测表格的折叠项配置 */
  209. export const GAS_COLLAPSES = [
  210. {
  211. name: '最大值位置',
  212. prop: 'maxValueInstallPos',
  213. },
  214. {
  215. name: '最大值(%)',
  216. prop: 'maxValue',
  217. },
  218. ];
  219. // 粉尘状态模块表格列配置
  220. export const DUST_STATUS_COLUMN = [
  221. {
  222. name: '设备类型',
  223. prop: 'typeName',
  224. },
  225. {
  226. name: '监测数量',
  227. prop: 'num',
  228. },
  229. {
  230. name: '当前状态',
  231. prop: 'warnLevelStr',
  232. },
  233. ];
  234. /** 粉尘监测表格的折叠项配置 */
  235. export const DUST_COLLAPSES = [
  236. {
  237. name: '最大值位置',
  238. prop: 'maxValueInstallPos',
  239. },
  240. {
  241. name: '最大值(mg/m3)',
  242. prop: 'maxValue',
  243. },
  244. ];
  245. // 火灾状态监测相关的内容配置项
  246. export const FIRE_STATUS_LIST = [
  247. {
  248. icon: 'warning-optical-fiber',
  249. label: '光纤测温系统报警',
  250. prop: 'fiberInfo.warnLevel',
  251. collapses: [
  252. {
  253. name: '最大值位置',
  254. prop: 'fiberInfo.maxValueInstallPos',
  255. },
  256. {
  257. name: '最大值(℃)',
  258. prop: 'fiberInfo.maxValue',
  259. },
  260. ],
  261. },
  262. {
  263. icon: 'warning-tubes',
  264. label: '束管监测系统报警',
  265. prop: 'bundletubeInfo.warnLevel',
  266. collapses: [
  267. {
  268. name: '最大值位置',
  269. prop: 'bundletubeInfo.maxValueInstallPos',
  270. },
  271. {
  272. name: '一氧化碳最大值(ppm)',
  273. prop: 'bundletubeInfo.coval',
  274. },
  275. {
  276. name: 'CH2最大值(ppm)',
  277. prop: 'bundletubeInfo.ch2val',
  278. },
  279. {
  280. name: '氧气最大值(ppm)',
  281. prop: 'bundletubeInfo.o2val',
  282. },
  283. {
  284. name: 'CH最大值(ppm)',
  285. prop: 'bundletubeInfo.chval',
  286. },
  287. {
  288. name: '瓦斯最大值(%)',
  289. prop: 'bundletubeInfo.gasval',
  290. },
  291. {
  292. name: '二氧化碳最大值(ppm)',
  293. prop: 'bundletubeInfo.co2val',
  294. },
  295. ],
  296. },
  297. {
  298. icon: 'warning-smoke-2',
  299. label: '烟雾传感器报警',
  300. prop: 'smokeSensorInfo.warnLevel',
  301. collapses: [
  302. {
  303. name: '最大值位置',
  304. prop: 'smokeSensorInfo.maxValueInstallPos',
  305. },
  306. {
  307. name: '最大值(%)',
  308. prop: 'smokeSensorInfo.maxValue',
  309. },
  310. ],
  311. },
  312. {
  313. icon: 'warning-CO-2',
  314. label: 'CO传感器报警',
  315. prop: 'coSensorInfo.warnLevel',
  316. collapses: [
  317. {
  318. name: '最大值位置',
  319. prop: 'coSensorInfo.maxValueInstallPos',
  320. },
  321. {
  322. name: '最大值(ppm)',
  323. prop: 'coSensorInfo.maxValue',
  324. },
  325. ],
  326. },
  327. {
  328. icon: 'warning-temp',
  329. label: '温度传感器报警',
  330. prop: 'tempSensorInfo.warnLevel',
  331. collapses: [
  332. {
  333. name: '最大值位置',
  334. prop: 'tempSensorInfo.maxValueInstallPos',
  335. },
  336. {
  337. name: '最大值(℃)',
  338. prop: 'tempSensorInfo.maxValue',
  339. },
  340. ],
  341. },
  342. ];
  343. // 文件总览相关的内容配置项
  344. export const FILE_OVERVIEW_CONFIG = [
  345. { src: leftImg, text: '文档总数', prop: 'totalNum', id: 'file_cfg_001' },
  346. { src: rightImg, text: '待审批数', prop: 'approvalNum', id: 'file_cfg_002' },
  347. ];
  348. // 通风状态监测相关的内容配置项
  349. export const VENTILATION_STATUS_HEADER_CONFIG = [
  350. {
  351. label: '总进风量(m³/min)',
  352. prop: 'totalIntM3',
  353. // prop: 'zongjinfeng',
  354. type: 'blue-to-left',
  355. },
  356. {
  357. label: '总回风量(m³/min)',
  358. prop: 'totalRetM3',
  359. // prop: 'zonghuifeng',
  360. type: 'green-to-right',
  361. },
  362. {
  363. label: '总需风量(m³/min)',
  364. prop: 'totalPlanM3',
  365. // prop: 'xufengliang',
  366. type: 'green-to-left',
  367. },
  368. {
  369. label: '巷道总长度(m)',
  370. prop: 'totallength',
  371. type: 'blue-to-right',
  372. },
  373. ];
  374. // 通风状态监测(树形节点详情)相关的内容配置项
  375. export const VENTILATION_STATUS_TREE_CONFIG = {
  376. prefix: '',
  377. prop: 'strname',
  378. suffix: '',
  379. children: [
  380. {
  381. prefix: '名称:',
  382. prop: 'strinstallpos',
  383. suffix: '',
  384. },
  385. {
  386. prefix: '风机排风量:',
  387. prop: 'flow_merge',
  388. suffix: '(m³/min)',
  389. },
  390. {
  391. prefix: '风机风压:',
  392. prop: 'fy_merge',
  393. suffix: '(Pa)',
  394. },
  395. {
  396. prefix: '外部漏风率:',
  397. prop: 'leakage',
  398. suffix: '%',
  399. },
  400. {
  401. prefix: '三区阻力分布:',
  402. prop: 'sqzlfb',
  403. suffix: '',
  404. },
  405. ],
  406. };
  407. // 瓦斯状态监测相关的内容配置项
  408. export const GAS_STATUS_HEADER_CONFIG = [
  409. {
  410. label: '瓦斯风险等级',
  411. prop: 'gasWarnLevel',
  412. type: 'to-bottom-right',
  413. },
  414. {
  415. label: '瓦斯鉴定等级',
  416. prop: 'gasJudgeLevel',
  417. type: 'to-top-right',
  418. },
  419. ];
  420. // 综合监测相关的内容配置项
  421. export const SUMMARY_HEADER_CONFIG = {
  422. label: '风险分析',
  423. prop: 'synthesizeS.levelstatus',
  424. type: 'to-bottom-right',
  425. };
  426. // 综合监测表格列配置
  427. export const SUMMARY_COLUMN = [
  428. {
  429. name: '监测类别',
  430. prop: 'label',
  431. },
  432. {
  433. name: '风险等级',
  434. prop: 'value',
  435. },
  436. ];
  437. // 预警总览相关的内容配置项
  438. export const WARNING_CONFIG = [
  439. { src: '', text: '监测总数', prop1: 'allNum', prop2: 'maxLevel', id: 'warning_cfg_000' },
  440. { src: SafetyIcon, text: '安全监测', prop1: 'synthesizeSWarnInfo.totalNum', prop2: 'synthesizeSWarnInfo.maxWarnLevel', id: 'warning_cfg_005' },
  441. { src: VentIcon, text: '通风', prop1: 'ventSWarnInfo.totalNum', prop2: 'ventSWarnInfo.maxWarnLevel', id: 'warning_cfg_004' },
  442. { src: DustIcon, text: '粉尘', prop1: 'dustSWarnInfo.totalNum', prop2: 'dustSWarnInfo.maxWarnLevel', id: 'warning_cfg_003' },
  443. { src: GasIcon, text: '瓦斯', prop1: 'gasSWarnInfo.totalNum', prop2: 'gasSWarnInfo.maxWarnLevel', id: 'warning_cfg_001' },
  444. { src: FireIcon, text: '火灾', prop1: 'fireSWarnInfo.totalNum', prop2: 'fireSWarnInfo.maxWarnLevel', id: 'warning_cfg_002' },
  445. ];
  446. // 粉尘预警相关的内容配置项
  447. export const DUST_RISK_CONFIG = [
  448. { src: LevelChartIcon, text: '风险等级', prop: 'fxdj', id: 'dust_risk_cfg_005' },
  449. { src: PointIcon, text: '测点数', prop: 'cds', id: 'dust_risk_cfg_004' },
  450. { src: NetworkIcon, text: '在线测点数', prop: 'zxcds', id: 'dust_risk_cfg_003' },
  451. { src: AlertIcon, text: '测点报警数', prop: 'cdbjs', id: 'dust_risk_cfg_001' },
  452. { src: DeviceIcon, text: '降尘设备数', prop: 'jcsbs', id: 'dust_risk_cfg_002' },
  453. ];
  454. export const DEFAULT_TEST_DATA = {
  455. dustInfo: {
  456. // 矿井粉尘风险信息
  457. totalNum: '/',
  458. dustTypeList: [
  459. {
  460. deviceType: '/',
  461. warnLevel: '/',
  462. num: '/',
  463. typeName: '/',
  464. },
  465. ],
  466. dustWarnLevel: '/', // 矿井粉尘风险性等级
  467. },
  468. fileServerInfo: {
  469. totalNum: '/', // 文档总数
  470. approvalNum: '/', // 待审批文档
  471. },
  472. warnInfo: {
  473. ventSWarnInfo: {
  474. totalNum: '/',
  475. maxWarnLevel: '/',
  476. },
  477. gasSWarnInfo: {
  478. totalNum: '/',
  479. maxWarnLevel: '/',
  480. },
  481. dustSWarnInfo: {
  482. totalNum: '/',
  483. maxWarnLevel: '/',
  484. },
  485. synthesizeSWarnInfo: {
  486. totalNum: '/',
  487. maxWarnLevel: '/',
  488. },
  489. fireSWarnInfo: {
  490. totalNum: '/',
  491. maxWarnLevel: '/',
  492. },
  493. allNum: '/',
  494. maxLevel: '/',
  495. },
  496. fireInfo: {
  497. tempMax: '/',
  498. fireWarnLevel: '/',
  499. bundletubeInfo: {
  500. typeName: '/',
  501. maxValueInstallPos: '/',
  502. tempMax: '/',
  503. coval: '/',
  504. ch2val: '/',
  505. deviceType: '/',
  506. warnLevel: '/',
  507. maxValue: '/',
  508. o2val: '/',
  509. totalNum: '/',
  510. chval: '/',
  511. gasval: '/',
  512. time: '/',
  513. isRun: '/',
  514. co2val: '/',
  515. },
  516. smokeSensorInfo: {
  517. deviceType: '/',
  518. tempMax: '/',
  519. warnLevel: '/',
  520. totalNum: '/',
  521. maxValue: '/',
  522. typeName: '/',
  523. maxValueInstallPos: '/',
  524. },
  525. fiberInfo: {
  526. deviceType: '/',
  527. tempMax: '/',
  528. warnLevel: '/',
  529. totalNum: '/',
  530. maxValue: '/',
  531. typeName: '/',
  532. maxValueInstallPos: '/',
  533. },
  534. tempSensorInfo: {
  535. deviceType: '/',
  536. tempMax: '/',
  537. warnLevel: '/',
  538. totalNum: '/',
  539. maxValue: '/',
  540. typeName: '/',
  541. maxValueInstallPos: '/',
  542. },
  543. },
  544. gasInfo: {
  545. gasWarnLevel: '/', // 瓦斯风险等级
  546. gasTypeList: [
  547. {
  548. warnLevel: '/',
  549. num: '/',
  550. typeName: '/',
  551. maxValueInstallPos: null,
  552. maxValue: null,
  553. },
  554. ],
  555. },
  556. ventInfo: {
  557. //通风系统信息
  558. totallength: '/', //矿井巷道总长度
  559. zonghuifeng: '/', //总回风
  560. fanMainList: [],
  561. xufengliang: '/', //总需风量
  562. zongjinfeng: '/', //总进风
  563. },
  564. sys_warndata: {
  565. info: {
  566. sysInfo: {
  567. ventS: {
  568. maxLevel: '/',
  569. netstatus: '/',
  570. code: '/',
  571. levelstatus: '/',
  572. maxLevel_str: '/',
  573. name: '/',
  574. count: '/',
  575. status: '/',
  576. maxLevel_status: '/',
  577. },
  578. fireS: {
  579. maxLevel: '/',
  580. code: '/',
  581. maxLevel_str: '/',
  582. count: '/',
  583. netstatus: '/',
  584. levelstatus: '/',
  585. name: '/',
  586. status: '/',
  587. maxLevel_status: '/',
  588. },
  589. synthesizeS: {
  590. maxLevel: '/',
  591. netstatus: 1,
  592. code: '/',
  593. levelstatus: '/',
  594. maxLevel_str: '/',
  595. name: '/',
  596. count: '/',
  597. status: '/',
  598. maxLevel_status: '/',
  599. },
  600. dustS: {
  601. maxLevel: '/',
  602. netstatus: '/',
  603. code: '/',
  604. levelstatus: '/',
  605. maxLevel_str: '/',
  606. name: '/',
  607. count: '/',
  608. status: '/',
  609. maxLevel_status: '/',
  610. },
  611. gasS: {
  612. maxLevel: '/',
  613. netstatus: '/',
  614. code: '/',
  615. levelstatus: '/',
  616. maxLevel_str: '/',
  617. devices: [],
  618. name: '/',
  619. count: '/',
  620. status: '/',
  621. maxLevel_status: '/',
  622. },
  623. deviceWarnInfo: {
  624. maxLevel: '/',
  625. levelstatus: '/',
  626. maxLevel_str: '/',
  627. status: '/',
  628. devMaxlevel_status: '/',
  629. },
  630. },
  631. },
  632. },
  633. dustRisk: {
  634. fxdj: '/',
  635. cds: '/',
  636. zxcds: '/',
  637. cdbjs: '/',
  638. jcsbs: '/',
  639. },
  640. orgname: '加载中...',
  641. orgcode: '/',
  642. ip: 'localhost',
  643. };
  644. export type BillboardType = typeof DEFAULT_TEST_DATA;
  645. export const mockSHENDONG = [
  646. {
  647. code: 'sdmtjtltmk',
  648. orgname: '柳塔矿',
  649. ip: '',
  650. dustRisk: {
  651. fxdj: '低',
  652. cds: 5,
  653. zxcds: 5,
  654. cdbjs: 0,
  655. jcsbs: 12,
  656. },
  657. },
  658. {
  659. code: 'sdmtjtcctrk',
  660. orgname: '寸草塔二矿',
  661. ip: '',
  662. dustRisk: {
  663. fxdj: '低',
  664. cds: 7,
  665. zxcds: 7,
  666. cdbjs: 0,
  667. jcsbs: 10,
  668. },
  669. },
  670. {
  671. code: 'sdmtjtbetmk',
  672. orgname: '布尔台矿',
  673. ip: '',
  674. dustRisk: {
  675. fxdj: '低',
  676. cds: 5,
  677. zxcds: 5,
  678. cdbjs: 0,
  679. jcsbs: 10,
  680. },
  681. },
  682. {
  683. code: 'sdmtjtwlmlmk',
  684. orgname: '乌兰木伦矿',
  685. ip: '',
  686. dustRisk: {
  687. fxdj: '低',
  688. cds: 8,
  689. zxcds: 7,
  690. cdbjs: 0,
  691. jcsbs: 15,
  692. },
  693. },
  694. {
  695. code: 'sdmtjtcctmk',
  696. orgname: '寸草塔矿',
  697. ip: '',
  698. dustRisk: {
  699. fxdj: '低',
  700. cds: 10,
  701. zxcds: 9,
  702. cdbjs: 2,
  703. jcsbs: 16,
  704. },
  705. },
  706. {
  707. code: 'sdmtjtsgtmk',
  708. orgname: '石圪台矿',
  709. ip: '',
  710. dustRisk: {
  711. fxdj: '低',
  712. cds: 6,
  713. zxcds: 6,
  714. cdbjs: 0,
  715. jcsbs: 12,
  716. },
  717. },
  718. {
  719. code: 'sdmtjtbltmk',
  720. orgname: '补连塔矿',
  721. ip: '',
  722. dustRisk: {
  723. fxdj: '低',
  724. cds: 9,
  725. zxcds: 9,
  726. cdbjs: 0,
  727. jcsbs: 16,
  728. },
  729. },
  730. {
  731. code: 'sdmtjthlgmk',
  732. orgname: '哈拉沟矿',
  733. ip: '',
  734. dustRisk: {
  735. fxdj: '低',
  736. cds: 11,
  737. zxcds: 10,
  738. cdbjs: 0,
  739. jcsbs: 25,
  740. },
  741. },
  742. {
  743. code: 'sdmtjtswmk',
  744. orgname: '上湾矿',
  745. ip: '',
  746. dustRisk: {
  747. fxdj: '低',
  748. cds: 6,
  749. zxcds: 6,
  750. cdbjs: 0,
  751. jcsbs: 10,
  752. },
  753. },
  754. {
  755. code: 'sdmtjtdltmkhjtj',
  756. orgname: '活鸡兔井',
  757. ip: '',
  758. dustRisk: {
  759. fxdj: '低',
  760. cds: 7,
  761. zxcds: 7,
  762. cdbjs: 0,
  763. jcsbs: 10,
  764. },
  765. },
  766. {
  767. code: 'sdmtjtdltmk',
  768. orgname: '大柳塔井',
  769. ip: '',
  770. dustRisk: {
  771. fxdj: '低',
  772. cds: 4,
  773. zxcds: 4,
  774. cdbjs: 1,
  775. jcsbs: 10,
  776. },
  777. },
  778. {
  779. code: 'sdmtjtjjmk',
  780. orgname: '锦界矿',
  781. ip: '',
  782. dustRisk: {
  783. fxdj: '低',
  784. cds: 78,
  785. zxcds: 0,
  786. cdbjs: 0,
  787. jcsbs: 23,
  788. },
  789. },
  790. {
  791. code: 'sdmtjtyjlmk',
  792. orgname: '榆家梁矿',
  793. ip: '',
  794. dustRisk: {
  795. fxdj: '低',
  796. cds: 31,
  797. zxcds: 2,
  798. cdbjs: 1,
  799. jcsbs: 46,
  800. },
  801. },
  802. {
  803. code: 'sdmtjtbdmk',
  804. orgname: '保德矿',
  805. ip: '',
  806. dustRisk: {
  807. fxdj: '低',
  808. cds: 53,
  809. zxcds: 22,
  810. cdbjs: 1,
  811. jcsbs: 11,
  812. },
  813. },
  814. ];