billboard.data.ts 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824
  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: 'zongjinfeng',
  353. type: 'blue-to-left',
  354. },
  355. {
  356. label: '总回风量(m³/min)',
  357. prop: 'zonghuifeng',
  358. type: 'green-to-right',
  359. },
  360. {
  361. label: '总需风量(m³/min)',
  362. prop: 'xufengliang',
  363. type: 'green-to-left',
  364. },
  365. {
  366. label: '巷道总长度(m)',
  367. prop: 'totallength',
  368. type: 'blue-to-right',
  369. },
  370. ];
  371. // 通风状态监测(树形节点详情)相关的内容配置项
  372. export const VENTILATION_STATUS_TREE_CONFIG = {
  373. prefix: '',
  374. prop: 'strname',
  375. suffix: '',
  376. children: [
  377. {
  378. prefix: '名称:',
  379. prop: 'strinstallpos',
  380. suffix: '',
  381. },
  382. {
  383. prefix: '1号风机风量:',
  384. prop: 'Fan1m3',
  385. suffix: '(m³/min)',
  386. },
  387. {
  388. prefix: '2号风机风量:',
  389. prop: 'Fan2m3',
  390. suffix: '(m³/min)',
  391. },
  392. {
  393. prefix: '频率:',
  394. prop: 'FanFreqHz',
  395. suffix: 'Hz',
  396. },
  397. {
  398. prefix: '三区阻力分布:',
  399. prop: 'sqzlfb',
  400. suffix: '',
  401. },
  402. ],
  403. };
  404. // 瓦斯状态监测相关的内容配置项
  405. export const GAS_STATUS_HEADER_CONFIG = [
  406. {
  407. label: '瓦斯风险等级',
  408. prop: 'gasWarnLevel',
  409. type: 'to-bottom-right',
  410. },
  411. {
  412. label: '瓦斯鉴定等级',
  413. prop: 'gasJudgeLevel',
  414. type: 'to-top-right',
  415. },
  416. ];
  417. // 综合监测相关的内容配置项
  418. export const SUMMARY_HEADER_CONFIG = {
  419. label: '风险分析',
  420. prop: 'synthesizeS.levelstatus',
  421. type: 'to-bottom-right',
  422. };
  423. // 综合监测表格列配置
  424. export const SUMMARY_COLUMN = [
  425. {
  426. name: '监测类别',
  427. prop: 'label',
  428. },
  429. {
  430. name: '风险等级',
  431. prop: 'value',
  432. },
  433. ];
  434. // 预警总览相关的内容配置项
  435. export const WARNING_CONFIG = [
  436. { src: '', text: '监测总数', prop1: 'allNum', prop2: 'allNum', id: 'warning_cfg_000' },
  437. { src: SafetyIcon, text: '安全监测', prop1: 'synthesizeSWarnInfo.totalNum', prop2: 'synthesizeSWarnInfo.maxWarnLevel', id: 'warning_cfg_005' },
  438. { src: VentIcon, text: '通风', prop1: 'ventSWarnInfo.totalNum', prop2: 'ventSWarnInfo.maxWarnLevel', id: 'warning_cfg_004' },
  439. { src: DustIcon, text: '粉尘', prop1: 'dustSWarnInfo.totalNum', prop2: 'dustSWarnInfo.maxWarnLevel', id: 'warning_cfg_003' },
  440. { src: GasIcon, text: '瓦斯', prop1: 'gasSWarnInfo.totalNum', prop2: 'gasSWarnInfo.maxWarnLevel', id: 'warning_cfg_001' },
  441. { src: FireIcon, text: '火灾', prop1: 'fireSWarnInfo.totalNum', prop2: 'fireSWarnInfo.maxWarnLevel', id: 'warning_cfg_002' },
  442. ];
  443. // 粉尘预警相关的内容配置项
  444. export const DUST_RISK_CONFIG = [
  445. { src: LevelChartIcon, text: '风险等级', prop: 'fxdj', id: 'dust_risk_cfg_005' },
  446. { src: PointIcon, text: '测点数', prop: 'cds', id: 'dust_risk_cfg_004' },
  447. { src: NetworkIcon, text: '在线测点数', prop: 'zxcds', id: 'dust_risk_cfg_003' },
  448. { src: AlertIcon, text: '测点报警数', prop: 'cdbjs', id: 'dust_risk_cfg_001' },
  449. { src: DeviceIcon, text: '降尘设备数', prop: 'jcsbs', id: 'dust_risk_cfg_002' },
  450. ];
  451. export const DEFAULT_TEST_DATA = {
  452. dustInfo: {
  453. // 矿井粉尘风险信息
  454. totalNum: 0,
  455. dustTypeList: [
  456. {
  457. deviceType: '/',
  458. warnLevel: 0,
  459. num: 0,
  460. typeName: '/',
  461. },
  462. {
  463. deviceType: '/',
  464. warnLevel: 0,
  465. num: 0,
  466. typeName: '/',
  467. },
  468. ],
  469. dustWarnLevel: 0, // 矿井粉尘风险性等级
  470. },
  471. fileServerInfo: {
  472. totalNum: 0, // 文档总数
  473. approvalNum: 0, // 待审批文档
  474. },
  475. fireInfo: {
  476. tempMax: 29,
  477. fireWarnLevel: 1001,
  478. bundletubeInfo: {
  479. typeName: '束管',
  480. maxValueInstallPos: '31310采空区50m',
  481. tempMax: 0,
  482. coval: '2.0',
  483. ch2val: '0.0',
  484. deviceType: 'bundletube_auto',
  485. warnLevel: 1001,
  486. maxValue: 2,
  487. o2val: '10.31',
  488. totalNum: 12,
  489. chval: '0.0',
  490. gasval: '0.0',
  491. time: '2024-05-31 16:34:04',
  492. isRun: '-2',
  493. co2val: '7.42',
  494. },
  495. smokeSensorInfo: {
  496. deviceType: 'modelsensor_smoke',
  497. tempMax: 0,
  498. warnLevel: 0,
  499. totalNum: 30,
  500. maxValue: 0,
  501. typeName: '烟雾传感器',
  502. maxValueInstallPos: '12煤井底停车场',
  503. },
  504. fiberInfo: {
  505. deviceType: 'fiber_normal',
  506. tempMax: 0,
  507. warnLevel: 0,
  508. totalNum: 4,
  509. maxValue: 25,
  510. typeName: '光纤测温',
  511. maxValueInstallPos: '31煤中央变电所电缆沟-通道一',
  512. },
  513. tempSensorInfo: {
  514. deviceType: 'modelsensor_temperature',
  515. tempMax: 29,
  516. warnLevel: 0,
  517. totalNum: 51,
  518. maxValue: 29,
  519. typeName: '温度传感器',
  520. maxValueInstallPos: '主通风机房配电室',
  521. },
  522. },
  523. gasInfo: {
  524. gasWarnLevel: 0, // 瓦斯风险等级
  525. gasTypeList: [
  526. {
  527. warnLevel: 0,
  528. num: 0,
  529. typeName: '/',
  530. },
  531. ],
  532. },
  533. ventInfo: {
  534. //通风系统信息
  535. totallength: 0, //矿井巷道总长度
  536. zonghuifeng: '0', //总回风
  537. fanMainList: [
  538. {
  539. sqzlfb: '/',
  540. strname: '/',
  541. strinstallpos: '/',
  542. Fan1m3: '/',
  543. Fan2m3: '/',
  544. },
  545. ],
  546. xufengliang: 0, //总需风量
  547. zongjinfeng: '/', //总进风
  548. },
  549. sys_warndata: {
  550. info: {
  551. sysInfo: {
  552. ventS: {
  553. maxLevel: 0,
  554. netstatus: 0,
  555. code: '/',
  556. levelstatus: '/',
  557. maxLevel_str: '/',
  558. name: '/',
  559. count: 0,
  560. status: '/',
  561. maxLevel_status: '/',
  562. },
  563. fireS: {
  564. maxLevel: 0,
  565. code: '/',
  566. maxLevel_str: '/',
  567. count: 0,
  568. netstatus: 0,
  569. levelstatus: '/',
  570. name: '/',
  571. status: '/',
  572. maxLevel_status: '/',
  573. },
  574. synthesizeS: {
  575. maxLevel: 0,
  576. netstatus: 1,
  577. code: 'synthesizeS',
  578. levelstatus: '低风险',
  579. maxLevel_str: '正常',
  580. name: '综合',
  581. count: 0,
  582. status: '正常',
  583. maxLevel_status: '低风险',
  584. },
  585. dustS: {
  586. maxLevel: 0,
  587. netstatus: 0,
  588. code: 'dustS',
  589. levelstatus: '低风险',
  590. maxLevel_str: '正常',
  591. name: '防尘',
  592. count: 0,
  593. status: '正常',
  594. maxLevel_status: '低风险',
  595. },
  596. gasS: {
  597. maxLevel: 0,
  598. netstatus: 0,
  599. code: 'gasS',
  600. levelstatus: '低风险',
  601. maxLevel_str: '正常',
  602. devices: [],
  603. name: '瓦斯',
  604. count: 0,
  605. status: '正常',
  606. maxLevel_status: '低风险',
  607. },
  608. deviceWarnInfo: {
  609. maxLevel: 101,
  610. levelstatus: '低风险',
  611. maxLevel_str: '低风险预警',
  612. status: '异常',
  613. devMaxlevel_status: '低风险预警',
  614. },
  615. },
  616. },
  617. },
  618. warn: {
  619. allNum: 19,
  620. synthesizeSWarnInfo: { totalNum: '2', maxWarnLevel: '安全的' }, //安全监控
  621. ventSWarnInfo: { totalNum: '2', maxWarnLevel: '安全的' }, //通风
  622. dustSWarnInfo: { totalNum: '2', maxWarnLevel: '安全的' }, //粉尘
  623. gasSWarnInfo: { totalNum: '2', maxWarnLevel: '安全的' }, //瓦斯
  624. fireSWarnInfo: { totalNum: '2', maxWarnLevel: '安全的' }, //火灾
  625. },
  626. dustRisk: {
  627. fxdj: '4',
  628. cds: 3,
  629. zxcds: 2,
  630. cdbjs: 1,
  631. jcsbs: 0,
  632. },
  633. orgname: '/',
  634. orgcode: '/',
  635. ip: 'localhost',
  636. };
  637. export type BillboardType = typeof DEFAULT_TEST_DATA;
  638. export const mockSHENDONG = [
  639. {
  640. code: 'sdmtjtltmk',
  641. orgname: '柳塔矿',
  642. ip: '',
  643. dustRisk: {
  644. fxdj: '低',
  645. cds: 5,
  646. zxcds: 5,
  647. cdbjs: 0,
  648. jcsbs: 12,
  649. },
  650. },
  651. {
  652. code: 'sdmtjtcctrk',
  653. orgname: '寸草塔二矿',
  654. ip: '',
  655. dustRisk: {
  656. fxdj: '低',
  657. cds: 7,
  658. zxcds: 7,
  659. cdbjs: 0,
  660. jcsbs: 10,
  661. },
  662. },
  663. {
  664. code: 'sdmtjtbetmk',
  665. orgname: '布尔台矿',
  666. ip: '',
  667. dustRisk: {
  668. fxdj: '低',
  669. cds: 5,
  670. zxcds: 5,
  671. cdbjs: 0,
  672. jcsbs: 10,
  673. },
  674. },
  675. {
  676. code: 'sdmtjtwlmlmk',
  677. orgname: '乌兰木伦矿',
  678. ip: '',
  679. dustRisk: {
  680. fxdj: '低',
  681. cds: 8,
  682. zxcds: 7,
  683. cdbjs: 0,
  684. jcsbs: 15,
  685. },
  686. },
  687. {
  688. code: 'sdmtjtcctmk',
  689. orgname: '寸草塔矿',
  690. ip: '',
  691. dustRisk: {
  692. fxdj: '低',
  693. cds: 10,
  694. zxcds: 9,
  695. cdbjs: 2,
  696. jcsbs: 16,
  697. },
  698. },
  699. {
  700. code: 'sdmtjtsgtmk',
  701. orgname: '石圪台矿',
  702. ip: '',
  703. dustRisk: {
  704. fxdj: '低',
  705. cds: 6,
  706. zxcds: 6,
  707. cdbjs: 0,
  708. jcsbs: 12,
  709. },
  710. },
  711. {
  712. code: 'sdmtjtbltmk',
  713. orgname: '补连塔矿',
  714. ip: '',
  715. dustRisk: {
  716. fxdj: '低',
  717. cds: 9,
  718. zxcds: 9,
  719. cdbjs: 0,
  720. jcsbs: 16,
  721. },
  722. },
  723. {
  724. code: 'sdmtjthlgmk',
  725. orgname: '哈拉沟矿',
  726. ip: '',
  727. dustRisk: {
  728. fxdj: '低',
  729. cds: 11,
  730. zxcds: 10,
  731. cdbjs: 0,
  732. jcsbs: 25,
  733. },
  734. },
  735. {
  736. code: 'sdmtjtswmk',
  737. orgname: '上湾矿',
  738. ip: '',
  739. dustRisk: {
  740. fxdj: '低',
  741. cds: 6,
  742. zxcds: 6,
  743. cdbjs: 0,
  744. jcsbs: 10,
  745. },
  746. },
  747. {
  748. code: 'sdmtjtdltmkhjtj',
  749. orgname: '活鸡兔井',
  750. ip: '',
  751. dustRisk: {
  752. fxdj: '低',
  753. cds: 7,
  754. zxcds: 7,
  755. cdbjs: 0,
  756. jcsbs: 10,
  757. },
  758. },
  759. {
  760. code: 'sdmtjtdltmk',
  761. orgname: '大柳塔井',
  762. ip: '',
  763. dustRisk: {
  764. fxdj: '低',
  765. cds: 4,
  766. zxcds: 4,
  767. cdbjs: 1,
  768. jcsbs: 10,
  769. },
  770. },
  771. {
  772. code: 'sdmtjtjjmk',
  773. orgname: '锦界矿',
  774. ip: '',
  775. dustRisk: {
  776. fxdj: '低',
  777. cds: 78,
  778. zxcds: 0,
  779. cdbjs: 0,
  780. jcsbs: 23,
  781. },
  782. },
  783. {
  784. code: 'sdmtjtyjlmk',
  785. orgname: '榆家梁矿',
  786. ip: '',
  787. dustRisk: {
  788. fxdj: '低',
  789. cds: 31,
  790. zxcds: 2,
  791. cdbjs: 1,
  792. jcsbs: 46,
  793. },
  794. },
  795. {
  796. code: 'sdmtjtbdmk',
  797. orgname: '保德矿',
  798. ip: '',
  799. dustRisk: {
  800. fxdj: '低',
  801. cds: 53,
  802. zxcds: 22,
  803. cdbjs: 1,
  804. jcsbs: 11,
  805. },
  806. },
  807. ];