device.data.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. import { defineAsyncComponent } from 'vue';
  2. import { BasicColumn } from '/@/components/Table';
  3. import { useGlobSetting } from '/@/hooks/setting';
  4. export const locationList = [
  5. {
  6. title: '风门',
  7. deviceType: 'gate',
  8. isVisible: 0,
  9. },
  10. {
  11. title: '风窗',
  12. deviceType: 'gate1',
  13. isVisible: 0,
  14. },
  15. {
  16. title: '测风装置',
  17. deviceType: 'gate2',
  18. isVisible: 0,
  19. },
  20. {
  21. title: '传感器',
  22. deviceType: 'gate3',
  23. isVisible: 0,
  24. },
  25. {
  26. title: '局部风机',
  27. deviceType: 'gate4',
  28. isVisible: 0,
  29. },
  30. {
  31. title: '主风机',
  32. deviceType: 'gate5',
  33. isVisible: 0,
  34. },
  35. {
  36. title: '风筒',
  37. deviceType: 'gate6',
  38. isVisible: 0,
  39. },
  40. {
  41. title: '密闭墙',
  42. deviceType: 'gate7',
  43. isVisible: 0,
  44. },
  45. ];
  46. export function getMonitorComponent() {
  47. const { sysOrgCode } = useGlobSetting();
  48. // const sysOrgCode = 'sdmtjtswmk';
  49. let FiberModal;
  50. switch (sysOrgCode) {
  51. case 'sdmtjtsgtmk': //石圪台
  52. case 'sdmtjthlgmk': //哈拉沟
  53. FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.hlg.vue'));
  54. break;
  55. // case 'sdmtjtcctmk': // 寸草塔
  56. // FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.cct.vue'));
  57. // break;
  58. case 'shsddlsjh': //沙吉海
  59. FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.sjh.vue'));
  60. break;
  61. case 'sdmtjtbdmk': //保德
  62. FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.bd.vue'));
  63. break;
  64. case 'sdmtjtbetmk': //布尔台
  65. FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal-Gx.vue'));
  66. break;
  67. case 'hnjmypmk': //崖坪 华宁焦煤
  68. case 'sdmtjtyjlmk': //榆家梁
  69. case 'sdmtjtcctmk': //榆家梁
  70. case 'sdmtjtswmk': //上湾
  71. FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.sw.vue'));
  72. break;
  73. default:
  74. FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.hlg.vue'));
  75. // FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.sw.vue'));
  76. // FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.vue'));
  77. // FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal-Gx.vue'));
  78. // FiberModal = defineAsyncComponent(() => import('./modal/fiber.modal.cct.vue'));
  79. }
  80. const BundleModal = defineAsyncComponent(() => import('./modal/bundle.modal.vue'));
  81. const FiremonModal = defineAsyncComponent(() => import('./modal/firemon.modal.vue'));
  82. const DustModal = defineAsyncComponent(() => import('./modal/dust.modal.vue'));
  83. const BallvalveModal = defineAsyncComponent(() => import('./modal/ballvalve.modal.vue'));
  84. const AtomizingModal = defineAsyncComponent(() => import('./modal/atomizing.modal.vue'));
  85. const GaspatrolModal = defineAsyncComponent(() => import('./modal/gaspatrol.modal.vue'));
  86. const WisdomBallModal = defineAsyncComponent(() => import('./modal/wisdomball.modal.vue'));
  87. return { FiberModal, BundleModal, DustModal, BallvalveModal, AtomizingModal, GaspatrolModal, WisdomBallModal };
  88. }
  89. export const chartsColumnList = [
  90. {
  91. legend: '一氧化碳',
  92. seriesName: '(ppm)',
  93. ymax: 15,
  94. yname: 'ppm',
  95. linetype: 'line',
  96. yaxispos: 'left',
  97. color: '#FDB146',
  98. sort: 1,
  99. xRotate: 0,
  100. dataIndex: 'coval',
  101. },
  102. {
  103. legend: '乙炔',
  104. seriesName: '',
  105. ymax: 15,
  106. yname: 'ppm',
  107. linetype: 'line',
  108. yaxispos: 'left',
  109. color: '#00FFA8',
  110. sort: 1,
  111. xRotate: 0,
  112. dataIndex: 'chval',
  113. },
  114. {
  115. legend: '乙烯',
  116. seriesName: '',
  117. ymax: 15,
  118. yname: 'ppm',
  119. linetype: 'line',
  120. yaxispos: 'left',
  121. color: '#AE19FF',
  122. sort: 1,
  123. xRotate: 0,
  124. dataIndex: 'ch2val',
  125. },
  126. {
  127. legend: '二氧化碳',
  128. seriesName: '(%)',
  129. ymax: 20,
  130. yname: '%',
  131. linetype: 'line',
  132. yaxispos: 'right',
  133. color: '#9C83D9',
  134. sort: 2,
  135. xRotate: 0,
  136. dataIndex: 'co2val',
  137. },
  138. {
  139. legend: '甲烷',
  140. seriesName: '',
  141. ymax: 20,
  142. yname: '%',
  143. linetype: 'line',
  144. yaxispos: 'right',
  145. color: '#DA3914',
  146. sort: 2,
  147. xRotate: 0,
  148. dataIndex: 'gasval',
  149. },
  150. {
  151. legend: '氧气',
  152. seriesName: '(%)',
  153. ymax: 30,
  154. yname: '%',
  155. linetype: 'line',
  156. yaxispos: 'right',
  157. color: '#03C2EC',
  158. sort: 3,
  159. xRotate: 0,
  160. dataIndex: 'o2val',
  161. },
  162. ];
  163. export const chartsColumnListGx = [
  164. {
  165. legend: '最高温度',
  166. seriesName: '( °C)',
  167. ymax: 100,
  168. yname: ' °C',
  169. linetype: 'line',
  170. yaxispos: 'left',
  171. color: '#FDB146',
  172. sort: 1,
  173. xRotate: 0,
  174. dataIndex: 'hightemperature',
  175. },
  176. {
  177. legend: '平均温度',
  178. seriesName: '( °C)',
  179. ymax: 100,
  180. yname: ' °C',
  181. linetype: 'line',
  182. yaxispos: 'left',
  183. color: '#00FFA8',
  184. sort: 1,
  185. xRotate: 0,
  186. dataIndex: 'avgtemperature',
  187. },
  188. ];
  189. export const chartsColumnListBall = [
  190. {
  191. legend: '一氧化碳',
  192. seriesName: '(ppm)',
  193. ymax: 30,
  194. yname: 'ppm',
  195. linetype: 'line',
  196. yaxispos: 'left',
  197. color: '#FDB146',
  198. sort: 1,
  199. xRotate: 0,
  200. dataIndex: 'coValue',
  201. },
  202. {
  203. legend: '氧气',
  204. seriesName: '',
  205. ymax: 30,
  206. yname: '%',
  207. linetype: 'line',
  208. yaxispos: 'right',
  209. color: '#00FFA8',
  210. sort: 2,
  211. xRotate: 0,
  212. dataIndex: 'o2Value',
  213. },
  214. {
  215. legend: '温度',
  216. seriesName: '(℃)',
  217. ymax: 30,
  218. yname: '℃',
  219. linetype: 'line',
  220. yaxispos: 'right',
  221. color: '#AE19FF',
  222. sort: 3,
  223. xRotate: 0,
  224. dataIndex: 'tempValue',
  225. },
  226. {
  227. legend: '二氧化碳',
  228. seriesName: '(%)',
  229. ymax: 30,
  230. yname: '%',
  231. linetype: 'line',
  232. yaxispos: 'right',
  233. color: '#9C83D9',
  234. sort: 2,
  235. xRotate: 0,
  236. dataIndex: 'co2val',
  237. },
  238. ];
  239. export const majorColumns: BasicColumn[] = [
  240. {
  241. title: '序号',
  242. dataIndex: '',
  243. key: 'rowIndex',
  244. width: 60,
  245. align: 'center',
  246. customRender: ({ index }) => {
  247. return `${index + 1}`;
  248. },
  249. },
  250. {
  251. title: '测段名称',
  252. align: 'center',
  253. dataIndex: 'name',
  254. width: 110,
  255. },
  256. {
  257. title: '始点',
  258. children: [
  259. {
  260. title: '测点位置',
  261. align: 'center',
  262. dataIndex: 'name1',
  263. width: 140,
  264. },
  265. {
  266. title: '风压(Pa)',
  267. align: 'center',
  268. dataIndex: 'pressure1',
  269. width: 100,
  270. },
  271. // {
  272. // title:'风压(kPa)',
  273. // align:"center",
  274. // dataIndex: 'name1'
  275. // },
  276. {
  277. title: '密度(kg/m³)',
  278. align: 'center',
  279. dataIndex: 'density1',
  280. width: 100,
  281. },
  282. {
  283. title: '标高(m)',
  284. align: 'center',
  285. dataIndex: 'elevation1',
  286. width: 100,
  287. },
  288. ],
  289. },
  290. {
  291. title: '末点',
  292. children: [
  293. {
  294. title: '测点位置',
  295. align: 'center',
  296. dataIndex: 'name2',
  297. width: 140,
  298. },
  299. {
  300. title: '风压(Pa)',
  301. align: 'center',
  302. dataIndex: 'pressure2',
  303. width: 100,
  304. },
  305. // {
  306. // title:'风压(kPa)',
  307. // align:"center",
  308. // dataIndex: 'name1'
  309. // },
  310. {
  311. title: '密度(kg/m³)',
  312. align: 'center',
  313. dataIndex: 'density2',
  314. width: 100,
  315. },
  316. {
  317. title: '标高(m)',
  318. align: 'center',
  319. dataIndex: 'elevation2',
  320. width: 100,
  321. },
  322. ],
  323. },
  324. {
  325. title: '风量(m³/min)',
  326. align: 'center',
  327. dataIndex: 'm3',
  328. width: 110,
  329. },
  330. {
  331. title: '阻力(Pa)',
  332. align: 'center',
  333. dataIndex: 'drag',
  334. width: 100,
  335. },
  336. {
  337. title: '风阻(Ns²/m⁸)',
  338. align: 'center',
  339. dataIndex: 'wdrag',
  340. width: 110,
  341. },
  342. {
  343. title: '更新时间',
  344. dataIndex: 'datatime',
  345. align: 'center',
  346. width: 127,
  347. },
  348. ];
  349. export const surfaceChartsColumns = [
  350. {
  351. legend: '进风',
  352. seriesName: '(m³/min)',
  353. ymax: 5000,
  354. yname: 'm³/min',
  355. linetype: 'line',
  356. yaxispos: 'left',
  357. color: '#00FFA8',
  358. sort: 1,
  359. xRotate: 0,
  360. dataIndex: 'jin',
  361. },
  362. {
  363. legend: '回风',
  364. seriesName: '',
  365. ymax: 5000,
  366. yname: 'm³/min',
  367. linetype: 'line',
  368. yaxispos: 'left',
  369. color: '#F07070',
  370. sort: 1,
  371. xRotate: 0,
  372. dataIndex: 'hui',
  373. },
  374. ];
  375. export const ballvalveColumns: BasicColumn[] = [
  376. {
  377. title: '设备编号',
  378. dataIndex: 'deviceNum',
  379. width: 60,
  380. align: 'center',
  381. },
  382. {
  383. title: '温度(℃)',
  384. dataIndex: 'tempRealtime',
  385. align: 'center',
  386. width: 60,
  387. },
  388. {
  389. title: 'CO(ppm)',
  390. dataIndex: 'CORealtime',
  391. align: 'center',
  392. width: 50,
  393. },
  394. {
  395. title: '压力(Pa)',
  396. dataIndex: 'PressureRealtime',
  397. align: 'center',
  398. width: 50,
  399. },
  400. {
  401. title: '烟雾(%)',
  402. dataIndex: 'SmokeRealtime485',
  403. align: 'center',
  404. width: 50,
  405. },
  406. {
  407. title: '是否报警',
  408. dataIndex: 'isWarn',
  409. align: 'center',
  410. width: 50,
  411. // customRender: () => {
  412. // return `正常`;
  413. // },
  414. },
  415. ];
  416. export const locationFormConfig = {
  417. labelAlign: 'left',
  418. showAdvancedButton: false,
  419. showResetButton: true,
  420. showSubmitButton: false,
  421. size: 'small',
  422. // baseColProps: {
  423. // // offset: 0.5,
  424. // xs: 24,
  425. // sm: 24,
  426. // md: 24,
  427. // lg: 9,
  428. // xl: 7,
  429. // xxl: 4,
  430. // },
  431. schemas: [
  432. {
  433. label: '人员名称',
  434. field: 'strname',
  435. component: 'Input',
  436. },
  437. {
  438. label: '所属部门',
  439. field: 'department',
  440. component: 'MTreeSelect',
  441. componentProps: {
  442. placeholder: '请选择所属部门',
  443. virtual: false,
  444. api: '/monitor/getDepartmentInfo',
  445. },
  446. },
  447. {
  448. label: '分站名称',
  449. field: 'stationname',
  450. component: 'Input',
  451. },
  452. ],
  453. colProps: {
  454. span: 4,
  455. },
  456. };
  457. export const vehicleFormConfig = {
  458. labelAlign: 'left',
  459. showAdvancedButton: false,
  460. showResetButton: true,
  461. showSubmitButton: false,
  462. // size: 'small',
  463. // baseColProps: {
  464. // // offset: 0.5,
  465. // xs: 24,
  466. // sm: 24,
  467. // md: 24,
  468. // lg: 9,
  469. // xl: 7,
  470. // xxl: 4,
  471. // },
  472. schemas: [
  473. {
  474. label: '车辆名称',
  475. field: 'strname',
  476. component: 'Input',
  477. },
  478. {
  479. label: '分站名称',
  480. field: 'stationname',
  481. component: 'Input',
  482. },
  483. ],
  484. colProps: {
  485. span: 4,
  486. },
  487. };
  488. export const noDetailArr = ['nitrogen', 'forcFan']; // 前端详情的,
  489. // 棋盘井球阀监测数据只有温度
  490. export const haveDetailArr = [
  491. 'windrect',
  492. 'window',
  493. 'gate',
  494. 'fanlocal',
  495. 'fanmain',
  496. 'fiber',
  497. 'bundletube',
  498. 'gaspatrol',
  499. // 'dusting', // 保德要求去掉
  500. // 'ballvalve',
  501. 'pump',
  502. 'safetymonitor',
  503. 'nitrogen',
  504. 'atomizing',
  505. 'firemon',
  506. 'forcFan',
  507. 'pulping',
  508. 'door',
  509. ];
  510. // 有操作记录的设备类型
  511. export const haveHandlerArr = [
  512. 'windrect',
  513. 'window',
  514. 'gate',
  515. 'fanlocal',
  516. // 'fanmain',
  517. 'pump',
  518. 'obfurage',
  519. 'nitrogen',
  520. 'pulping',
  521. 'spray',
  522. 'dustdev',
  523. 'gate_linkdlfm',
  524. // 'firemon',
  525. ]; // table无操作
  526. export const noWarningArr = [
  527. 'location',
  528. 'vehicle',
  529. 'cheliang',
  530. 'majorpath',
  531. 'gasDayReport',
  532. 'dustDayReport',
  533. 'bundleDayReport',
  534. 'bundleSpyDayReport',
  535. 'gate_linkdlfm',
  536. 'substation_normal',
  537. ]; // 无预警详情的
  538. export const haveSysDetailArr = ['forcFan', 'pulping']; //有场景详情的
  539. // export const haveSysDetailArr = ['']; //有场景详情的
  540. // 无定位
  541. export const noLocationArr = () => {
  542. const { sysOrgCode } = useGlobSetting();
  543. if (sysOrgCode === 'sdmtjtcctrk') {
  544. return ['location', 'vehicle'];
  545. } else {
  546. return [];
  547. }
  548. };
  549. export const noHistoryArr = () =>
  550. History_Type['type'] == 'remote'
  551. ? ['surface_history', 'majorpath', 'gasDayReport', 'dustDayReport', 'bundleDayReport', 'bundleSpyDayReport', 'gasDay', 'gate_linkdlfm']
  552. : ['majorpath', 'gasDayReport', 'dustDayReport', 'bundleDayReport', 'bundleSpyDayReport', 'gate_linkdlfm', 'gasDay', 'substation_normal'];