mainWell.vue 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506
  1. <template>
  2. <div class="mainWell">
  3. <!-- 光钎测温-->
  4. <div class="work-nav" v-if="listData.bundletube.length == 0 && strType != 'sys_coalseam'">
  5. <div class="nav" v-for="(item, index) in topOutList" :key="index">
  6. <div class="pic" v-if="item.imgSrc">
  7. <img :src="imgUrl" alt="" />
  8. </div>
  9. <div class="content" v-if="item.label && item.value">
  10. <span>{{ item.label }}</span>
  11. <span>{{ item.value }}</span>
  12. </div>
  13. <div class="text" v-if="item.text">{{ item.text }}</div>
  14. </div>
  15. </div>
  16. <!-- 束管监测 -->
  17. <div class="work-nav" v-if="listData.bundletube.length != 0 && strType != 'sys_coalseam'">
  18. <div class="content-box">
  19. <div class="contents">
  20. <img src="/@/assets/images/fire/pie.png" alt="" />
  21. <span class="text">{{ topContent.temperature }}</span>
  22. <span class="dw">°C</span>
  23. </div>
  24. </div>
  25. <div class="content-box">
  26. <div class="text1">{{ topContent.warn }}</div>
  27. </div>
  28. </div>
  29. <div class="center-box" v-if="strType != 'sys_coalseam'">
  30. <div class="content-box">
  31. <div class="container-title">{{ tabLists.yw }}</div>
  32. <div class="container-content">
  33. <div class="container-content-box" v-for="(item, index) in monitorlistYw" :key="index">
  34. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  35. <div class="content-box-text">
  36. <div class="box-text-z">
  37. <div class="text-label">值</div>
  38. <div class="text-val">{{ item.val || '--' }}</div>
  39. </div>
  40. <div class="box-text-zt">
  41. <div class="text-label">状态</div>
  42. <div :class="item.warnLevel_str == '报警' ? 'text-val1' : 'text-val2'">{{ item.warnLevel_str || '--' }}
  43. </div>
  44. </div>
  45. <div class="box-text-time">
  46. <div class="text-label">时间</div>
  47. <div class="text-val">{{ item.readTime || '--' }}</div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. <!-- <div class="content-box">
  54. <div class="container-title">{{ tabLists.pl }}</div>
  55. <div class="container-content">
  56. <div class="container-content-box" v-for="(item, index) in monitorlistPl" :key="index">
  57. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  58. <div class="content-box-text">
  59. <div class="box-text-z">
  60. <div class="text-label">值</div>
  61. <div class="text-val">{{ item.readData.sprayval || '--' }}</div>
  62. </div>
  63. <div class="box-text-zt">
  64. <div class="text-label">状态</div>
  65. <div :class="item.warnLevel_str == '报警' ? 'text-val1' : 'text-val2'">{{ item.warnLevel_str || '--' }}
  66. </div>
  67. </div>
  68. <div class="box-text-time">
  69. <div class="text-label">时间</div>
  70. <div class="text-val">{{ item.readTime || '--' }}</div>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. </div> -->
  76. <div class="content-box">
  77. <div class="container-title">{{ tabLists.wd }}</div>
  78. <div class="container-content">
  79. <div class="container-content-box" v-for="(item, index) in monitorlistWd" :key="index">
  80. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  81. <div class="content-box-text">
  82. <div class="box-text-z">
  83. <div class="text-label">值</div>
  84. <div class="text-val">{{ item.val || '--' }}</div>
  85. </div>
  86. <div class="box-text-zt">
  87. <div class="text-label">状态</div>
  88. <div :class="item.warnLevel_str == '报警' ? 'text-val1' : 'text-val2'">{{ item.warnLevel_str || '--' }}
  89. </div>
  90. </div>
  91. <div class="box-text-time">
  92. <div class="text-label">时间</div>
  93. <div class="text-val">{{ item.readTime || '--' }}</div>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. <div class="content-box">
  100. <div class="container-title">{{ tabLists.co }}</div>
  101. <div class="container-content">
  102. <div class="container-content-box" v-for="(item, index) in monitorlistHy" :key="index">
  103. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  104. <div class="content-box-text">
  105. <div class="box-text-zt1">
  106. <div class="text-label-hy">状态</div>
  107. <div :class="item.warnLevel_str == '报警' ? 'text-val-hy1' : 'text-val-hy2'">{{ item.warnLevel_str || '--'
  108. }}
  109. </div>
  110. </div>
  111. <div class="box-text-time1">
  112. <div class="text-label-hy">时间</div>
  113. <div class="text-val-hy">{{ item.readTime || '--' }}</div>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. <div :class="listData.fiber.length != 0 ? 'center-box1' : 'center-box2'" v-if="strType == 'sys_coalseam'">
  121. <div class="content-box">
  122. <div class="container-title">{{ tabLists.yw }}</div>
  123. <div class="container-content">
  124. <div class="container-content-box" v-for="(item, index) in monitorlistYw" :key="index">
  125. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  126. <div class="content-box-text">
  127. <div class="box-text-z">
  128. <div class="text-label">值</div>
  129. <div class="text-val">{{ item.val || '--' }}</div>
  130. </div>
  131. <div class="box-text-zt">
  132. <div class="text-label">状态</div>
  133. <div :class="item.warnLevel_str == '报警' ? 'text-val1' : 'text-val2'">{{ item.warnLevel_str || '--' }}
  134. </div>
  135. </div>
  136. <div class="box-text-time">
  137. <div class="text-label">时间</div>
  138. <div class="text-val">{{ item.readTime || '--' }}</div>
  139. </div>
  140. </div>
  141. </div>
  142. </div>
  143. </div>
  144. <div class="content-box">
  145. <div class="container-title">{{ tabLists.wd }}</div>
  146. <div class="container-content">
  147. <div class="container-content-box" v-for="(item, index) in monitorlistWd" :key="index">
  148. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  149. <div class="content-box-text">
  150. <div class="box-text-z">
  151. <div class="text-label">值</div>
  152. <div class="text-val">{{ item.val || '--' }}</div>
  153. </div>
  154. <div class="box-text-zt">
  155. <div class="text-label">状态</div>
  156. <div :class="item.warnLevel_str == '报警' ? 'text-val1' : 'text-val2'">{{ item.warnLevel_str || '--' }}
  157. </div>
  158. </div>
  159. <div class="box-text-time">
  160. <div class="text-label">时间</div>
  161. <div class="text-val">{{ item.readTime || '--' }}</div>
  162. </div>
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167. <div class="content-box">
  168. <div class="container-title">{{ tabLists.pl }}</div>
  169. <div class="container-content">
  170. <div class="container-content-box" v-for="(item, index) in monitorlistPl" :key="index">
  171. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  172. <div class="content-box-text">
  173. <div class="box-text-z">
  174. <div class="text-label">值</div>
  175. <div class="text-val">{{ item.readData.sprayval || '--' }}</div>
  176. </div>
  177. <div class="box-text-zt">
  178. <div class="text-label">状态</div>
  179. <div :class="item.warnLevel_str == '报警' ? 'text-val1' : 'text-val2'">{{ item.warnLevel_str || '--' }}
  180. </div>
  181. </div>
  182. <div class="box-text-time">
  183. <div class="text-label">时间</div>
  184. <div class="text-val">{{ item.readTime || '--' }}</div>
  185. </div>
  186. </div>
  187. </div>
  188. </div>
  189. </div>
  190. <div class="content-box">
  191. <div class="container-title">{{ tabLists.co }}</div>
  192. <div class="container-content">
  193. <div class="container-content-box" v-for="(item, index) in monitorlistHy" :key="index">
  194. <div class="content-box-title">{{ item.strinstallpos || '--' }}</div>
  195. <div class="content-box-text">
  196. <div class="box-text-zt1">
  197. <div class="text-label-hy">状态</div>
  198. <div :class="item.warnLevel_str == '报警' ? 'text-val-hy1' : 'text-val-hy2'">{{ item.warnLevel_str || '--'
  199. }}
  200. </div>
  201. </div>
  202. <div class="box-text-time1">
  203. <div class="text-label-hy">时间</div>
  204. <div class="text-val-hy">{{ item.readTime || '--' }}</div>
  205. </div>
  206. </div>
  207. </div>
  208. </div>
  209. </div>
  210. </div>
  211. <div :class="strType == 'sys_coalseam' ? 'footer-box1' : 'footer-box'"
  212. v-if="listData.bundletube.length == 0 && strType != 'sys_coalseam'">
  213. <div class="footer-title">
  214. <div class="echart-label">光纤测温系统实时温度监测</div>
  215. </div>
  216. <div class="echart-content">
  217. <echartLine2 :echartDataWd="echartDataWd" />
  218. </div>
  219. </div>
  220. <div :class="strType == 'sys_coalseam' ? 'footer-box1' : 'footer-box'"
  221. v-if="strType == 'sys_coalseam' && listData.fiber.length != 0">
  222. <div class="footer-title">
  223. <div class="echart-label">光纤测温系统实时温度监测</div>
  224. </div>
  225. <div class="echart-content">
  226. <echartLine2 :echartDataWd="echartDataWd" />
  227. </div>
  228. </div>
  229. <!-- 束管监测 -->
  230. <div class="content-s" v-if="listData.bundletube.length != 0 && strType != 'sys_coalseam'">
  231. <div class="title-b">采空区密闭参数</div>
  232. <div class="card-btn">
  233. <div :class="activeIndex == index ? 'content-box1' : 'content-box'" v-for="(item, index) in mbList" :key="index"
  234. @click="btnClick(item, index)">
  235. <div class="btn-label">
  236. <span>{{ item.label }}</span>
  237. <span>{{ item.dw }}</span>
  238. </div>
  239. <div class="box-item box-item1">
  240. <span class="text-t">{{ `${item.label1}:` }}</span>
  241. <span class="text-v">{{ item.nd }}</span>
  242. </div>
  243. <div class="box-item box-item2">
  244. <span class="text-t">{{ `${item.label2}:` }}</span>
  245. <span class="text-v">{{ item.time1 }}</span>
  246. </div>
  247. <div class="box-item box-item3">
  248. <span class="text-t">{{ `${item.label3}:` }}</span>
  249. <span class="text-v">{{ item.address }}</span>
  250. </div>
  251. </div>
  252. </div>
  253. <div class="echart-box">
  254. <div class="title-f">
  255. <div class="title-text">{{ `${type}趋势` }}</div>
  256. </div>
  257. <div class="echarts-box">
  258. <echartLine1 :echartDataSg="echartDataSg1" :lengedDataName="echartDataSg1.lengedDataName" />
  259. </div>
  260. </div>
  261. </div>
  262. </div>
  263. </template>
  264. <script lang="ts" setup>
  265. import { ref, computed, reactive, watch, defineProps } from 'vue';
  266. import { topOutList, tabLists, } from '../common.data';
  267. import imgUrl from '/@/assets/images/fire/pie.png';
  268. import echartLine2 from './echartLine2.vue';
  269. import echartLine1 from './echartLine1.vue';
  270. let props = defineProps({
  271. listData: Object,
  272. strType: String,
  273. });
  274. //束管监测-顶部区域数据
  275. let topContent = reactive({
  276. temperature: '0',
  277. position: '',
  278. time: '',
  279. warn: '',
  280. });
  281. //束管监测当前密闭参数激活选项
  282. let activeIndex = ref(0);
  283. //束管监测当前激活密闭参数类型
  284. let type = ref('O₂');
  285. //束管监测密闭参数列表
  286. let mbList = reactive([
  287. {
  288. label: 'O₂',
  289. dw: '(%)',
  290. label1: '浓度',
  291. label2: '时间',
  292. label3: '位置',
  293. nd: 0,
  294. time1: '',
  295. address: '',
  296. },
  297. {
  298. label: 'CO',
  299. dw: '(ppm)',
  300. label1: '浓度',
  301. label2: '时间',
  302. label3: '位置',
  303. nd: 0,
  304. time1: '',
  305. address: '',
  306. },
  307. {
  308. label: 'CO₂',
  309. dw: '(%)',
  310. label1: '浓度',
  311. label2: '时间',
  312. label3: '位置',
  313. nd: 0,
  314. time1: '',
  315. address: '',
  316. },
  317. {
  318. label: 'CH₄',
  319. dw: '(%)',
  320. label1: '浓度',
  321. label2: '时间',
  322. label3: '位置',
  323. nd: 0,
  324. time1: '',
  325. address: '',
  326. },
  327. {
  328. label: 'C₂H₂',
  329. dw: '(ppm)',
  330. label1: '浓度',
  331. label2: '时间',
  332. label3: '位置',
  333. nd: 0,
  334. time1: '',
  335. address: '',
  336. },
  337. {
  338. label: 'C₂H₄',
  339. dw: '(ppm)',
  340. label1: '浓度',
  341. label2: '时间',
  342. label3: '位置',
  343. nd: 0,
  344. time1: '',
  345. address: '',
  346. },
  347. ]);
  348. let echartDataSg1 = reactive({
  349. xData: [],
  350. yData: [],
  351. lengedData: 'O₂',
  352. lengedDataName: '(%)',
  353. });
  354. let echartDataSgList = reactive<any[]>([]);
  355. //外因火灾温度监测-图表数据
  356. let echartDataWd = reactive({
  357. xData: [],
  358. curData: {
  359. lengedData: '实时温度',
  360. data: [],
  361. },
  362. maxData: {
  363. lengedData: '最大温度',
  364. data: [],
  365. },
  366. minData: {
  367. lengedData: '最小温度',
  368. data: [],
  369. },
  370. avgData: {
  371. lengedData: '平均温度',
  372. data: [],
  373. },
  374. });
  375. //烟雾传感器列表数据
  376. let monitorlistYw = reactive([]);
  377. //火焰传感器列表数据
  378. let monitorlistHy = reactive([]);
  379. //喷淋装置列表数据
  380. let monitorlistPl = reactive([]);
  381. //温度传感器列表数据
  382. let monitorlistWd = reactive([]);
  383. //束管监测密闭参数选项切换
  384. function btnClick(item, ind) {
  385. activeIndex.value = ind;
  386. type.value = item.label;
  387. echartDataSg1.xData.length = 0;
  388. echartDataSg1.yData.length = 0;
  389. echartDataSg1.lengedData = type.value;
  390. echartDataSg1.lengedDataName = item.dw;
  391. switch (type.value) {
  392. case 'O₂':
  393. echartDataSgList.forEach((el) => {
  394. echartDataSg1.xData.push(el.time);
  395. echartDataSg1.yData.push(el.o2val);
  396. });
  397. break;
  398. case 'C₂H₄':
  399. echartDataSgList.forEach((el) => {
  400. echartDataSg1.xData.push(el.time);
  401. echartDataSg1.yData.push(el.ch2val);
  402. });
  403. break;
  404. case 'CO':
  405. echartDataSgList.forEach((el) => {
  406. echartDataSg1.xData.push(el.time);
  407. echartDataSg1.yData.push(el.coval);
  408. });
  409. break;
  410. case 'CH₄':
  411. echartDataSgList.forEach((el) => {
  412. echartDataSg1.xData.push(el.time);
  413. echartDataSg1.yData.push(el.gasval);
  414. });
  415. break;
  416. case 'CO₂':
  417. echartDataSgList.forEach((el) => {
  418. echartDataSg1.xData.push(el.time);
  419. echartDataSg1.yData.push(el.co2val);
  420. });
  421. break;
  422. case 'C₂H₂':
  423. echartDataSgList.forEach((el) => {
  424. echartDataSg1.xData.push(el.time);
  425. echartDataSg1.yData.push(el.chval);
  426. });
  427. break;
  428. }
  429. }
  430. watch(
  431. () => props.listData,
  432. (val) => {
  433. console.log(val, 'val---------------');
  434. props.listData = val;
  435. if (JSON.stringify(val) === '{}') return;
  436. echartDataSg1.xData.length = 0;
  437. echartDataSg1.yData.length = 0;
  438. echartDataSgList.length = 0;
  439. echartDataWd.xData.length = 0;
  440. echartDataWd.avgData.data.length = 0;
  441. echartDataWd.maxData.data.length = 0;
  442. echartDataWd.minData.data.length = 0;
  443. echartDataWd.curData.data.length = 0;
  444. monitorlistYw.length = 0;
  445. monitorlistHy.length = 0;
  446. monitorlistPl.length = 0;
  447. monitorlistWd.length = 0;
  448. if (val.fiber.length != 0) {
  449. const fiber: any = val.fiber[0];
  450. topOutList[0].value = fiber.readData.fmax;
  451. topOutList[1].value = fiber.readData.fmin;
  452. topOutList[2].value = fiber.readData.favg;
  453. topOutList[3].text = fiber.warnFlag ? '存在风险' : '正常';
  454. const arr: any[] = JSON.parse(fiber.readData.fibreTemperature);
  455. arr.forEach((el) => {
  456. echartDataWd.xData.push(el.pos);
  457. echartDataWd.curData.data.push(el.value);
  458. echartDataWd.maxData.data.push(fiber.avgParam?.max_temperature_value || 0);
  459. echartDataWd.minData.data.push(fiber.avgParam?.min_temperature_value || 0);
  460. echartDataWd.avgData.data.push(fiber.avgParam?.avg_temperature_value || 0);
  461. });
  462. } else {
  463. topOutList[0].value = '--';
  464. topOutList[1].value = '--';
  465. topOutList[2].value = '--';
  466. topOutList[3].text = '正常';
  467. }
  468. if (val.bundletube.length != 0) {
  469. topContent.temperature = val.temperature[0] ? val.temperature[0].readData.temperature : '--';
  470. topContent.position = val.bundletube[0].strinstallpos || '--';
  471. topContent.time = val.bundletube[0].readTime || '--';
  472. topContent.warn =
  473. val.bundletube[0].warnLevel == 0
  474. ? '正常'
  475. : val.bundletube[0].warnLevel == 101
  476. ? '较低风险'
  477. : val.bundletube[0].warnLevel == 102
  478. ? '低风险'
  479. : val.bundletube[0].warnLevel == 103
  480. ? '中风险'
  481. : val.bundletube[0].warnLevel == 104
  482. ? '高风险'
  483. : val.bundletube[0].warnLevel == 201
  484. ? '报警'
  485. : '正常';
  486. val.bundletube[0].history.forEach((v) => {
  487. echartDataSg1.xData.push(v.time);
  488. if (echartDataSg1.lengedData == 'O₂') {
  489. echartDataSg1.yData.push(v.o2val);
  490. } else if (echartDataSg1.lengedData == 'C₂H₄') {
  491. echartDataSg1.yData.push(v.ch2val);
  492. } else if (echartDataSg1.lengedData == 'CO') {
  493. echartDataSg1.yData.push(v.coval);
  494. } else if (echartDataSg1.lengedData == 'CH₄') {
  495. echartDataSg1.yData.push(v.chval);
  496. } else if (echartDataSg1.lengedData == 'CO₂') {
  497. echartDataSg1.yData.push(v.co2val);
  498. } else if (echartDataSg1.lengedData == 'C₂H₂') {
  499. echartDataSg1.yData.push(v.gasval);
  500. }
  501. echartDataSgList.push(v);
  502. });
  503. } else {
  504. topContent.temperature = '--';
  505. topContent.position = '--';
  506. topContent.time = '--';
  507. topContent.warn = '正常';
  508. }
  509. if (val.smoke.length != 0) {
  510. val.smoke.forEach((el) => {
  511. el.smokeVal = el.readData.smokeval == '0' ? '无烟' : el.readData.smokeval == '1' ? '有烟' : el.readData.smokeval
  512. monitorlistYw.push({
  513. strinstallpos: el.strinstallpos,
  514. val: el.smokeVal,
  515. warnLevel_str: el.warnLevel_str,
  516. readTime: el.readTime,
  517. });
  518. });
  519. }
  520. if (val.co.length != 0) {
  521. val.co.forEach((el) => {
  522. monitorlistHy.push(el);
  523. });
  524. }
  525. if (val.spray.length != 0) {
  526. val.spray.forEach((el) => {
  527. monitorlistPl.push(el);
  528. });
  529. }
  530. if (val.temperature.length != 0) {
  531. val.temperature.forEach((el) => {
  532. monitorlistWd.push({
  533. strinstallpos: el.strinstallpos,
  534. val: el.readData.fireval,
  535. warnLevel_str: el.warnLevel_str,
  536. readTime: el.readTime,
  537. });
  538. });
  539. }
  540. },
  541. { immediate: true, deep: true }
  542. );
  543. </script>
  544. <style lang="less" scoped>
  545. @import '/@/design/theme.less';
  546. @{theme-deepblue} {
  547. .mainWell {
  548. --image-bj1: url('/@/assets/images/themify/deepblue/fire/bj1.png');
  549. --image-max: url('/@/assets/images/themify/deepblue/fire/max.svg');
  550. --image-min: url('/@/assets/images/themify/deepblue/fire/min.svg');
  551. --image-pj: url('/@/assets/images/themify/deepblue/fire/pj.svg');
  552. --image-1: url('/@/assets/images/themify/deepblue/fire/1.png');
  553. --image-contetn: url('/@/assets/images/themify/deepblue/fire/contetn.png');
  554. --image-2: url('/@/assets/images/themify/deepblue/fire/2.png');
  555. }
  556. }
  557. .mainWell {
  558. --image-z: url('/@/assets/images/fire/wy-z.png');
  559. --image-zt: url('/@/assets/images/fire/wy-zt.png');
  560. --image-zt1: url('/@/assets/images/fire/wy-zt2.png');
  561. --image-time: url('/@/assets/images/fire/wy-time.png');
  562. --image-time1: url('/@/assets/images/fire/wy-time2.png');
  563. --image-title: url('/@/assets/images/fire/wy-title.png');
  564. --image-bj2: url('/@/assets/images/fire/wy-bj.png');
  565. --image-max: url('/@/assets/images/fire/max.svg');
  566. --image-min: url('/@/assets/images/fire/min.svg');
  567. --image-pj: url('/@/assets/images/fire/pj.svg');
  568. --image-1: url('/@/assets/images/fire/1.png');
  569. --image-contetn: url('/@/assets/images/fire/contetn.png');
  570. --image-2: url('/@/assets/images/fire/2.png');
  571. --border-image-2: linear-gradient(to bottom, transparent, #024688, transparent);
  572. width: 100%;
  573. height: 100%;
  574. padding: 20px;
  575. box-sizing: border-box;
  576. overflow-y: auto;
  577. .work-nav {
  578. height: 15%;
  579. width: 100%;
  580. margin-bottom: 20px;
  581. background: var(--image-bj1) no-repeat center;
  582. background-size: 100% 100%;
  583. display: flex;
  584. justify-content: space-between;
  585. align-items: center;
  586. .nav {
  587. display: flex;
  588. justify-content: center;
  589. align-items: center;
  590. &:nth-child(1) {
  591. flex: 1;
  592. height: 100%;
  593. border-right: 2px solid;
  594. border-image: var(--border-image-2) 1 1 1;
  595. }
  596. &:nth-child(2) {
  597. flex: 1;
  598. height: 100%;
  599. border-right: 2px solid;
  600. border-image: var(--border-image-2) 1 1 1;
  601. }
  602. &:nth-child(3) {
  603. flex: 1;
  604. height: 100%;
  605. border-right: 2px solid;
  606. border-image: var(--border-image-2) 1 1 1;
  607. }
  608. &:nth-child(4) {
  609. flex: 1.2;
  610. color: #b3b8cc;
  611. font-size: 16px;
  612. height: 100%;
  613. border-right: 2px solid;
  614. border-image: var(--border-image-2) 1 1 1;
  615. }
  616. &:nth-child(5) {
  617. flex: 0.8;
  618. color: #2b87ff;
  619. font-size: 14px;
  620. height: 100%;
  621. }
  622. .pic {
  623. width: 26%;
  624. height: 84%;
  625. img {
  626. width: 100%;
  627. height: 100%;
  628. }
  629. }
  630. .content {
  631. height: 84%;
  632. margin-left: 15px;
  633. color: #fff;
  634. display: flex;
  635. flex-direction: column;
  636. justify-content: space-around;
  637. span {
  638. font-size: 14px;
  639. &:nth-child(1) {
  640. padding: 5px 0px;
  641. color: #b3b8cc;
  642. }
  643. &:nth-child(2) {
  644. font-family: 'douyuFont';
  645. font-size: 16px;
  646. color: var(--vent-table-action-link);
  647. }
  648. }
  649. }
  650. }
  651. .nav:nth-child(1) .pic {
  652. background: var(--image-max) no-repeat center;
  653. background-size: 50% 50%;
  654. }
  655. .nav:nth-child(2) .pic {
  656. background: var(--image-min) no-repeat center;
  657. background-size: 50% 50%;
  658. }
  659. .nav:nth-child(3) .pic {
  660. background: var(--image-pj) no-repeat center;
  661. background-size: 50% 50%;
  662. }
  663. .content-box {
  664. display: flex;
  665. &:nth-child(1) {
  666. justify-content: space-around;
  667. align-items: center;
  668. flex: 2;
  669. height: 100%;
  670. border-right: 2px solid;
  671. border-image: var(--border-image-2) 1 1 1;
  672. }
  673. &:nth-child(2) {
  674. flex: 1;
  675. justify-content: center;
  676. align-items: center;
  677. height: 100%;
  678. }
  679. .contents {
  680. height: 73%;
  681. &:nth-child(1) {
  682. width: 40%;
  683. display: flex;
  684. justify-content: center;
  685. align-items: center;
  686. img {
  687. position: relative;
  688. width: 23%;
  689. height: 100%;
  690. background: var(--image-pj) no-repeat center;
  691. background-size: 50% 50%;
  692. }
  693. .text {
  694. font-family: 'douyuFont';
  695. font-size: 28px;
  696. margin: 0px 15px;
  697. color: var(--vent-table-action-link);
  698. }
  699. .dw {
  700. font-size: 14px;
  701. color: #b3b8cc;
  702. }
  703. }
  704. &:nth-child(2) {
  705. width: 60%;
  706. display: flex;
  707. flex-direction: column;
  708. justify-content: space-around;
  709. .text {
  710. font-size: 18px;
  711. .text-label {
  712. color: #b3b8cc;
  713. font-weight: bold;
  714. }
  715. .text-value {
  716. font-family: 'douyuFont';
  717. color: var(--vent-table-action-link);
  718. margin-left: 10px;
  719. }
  720. }
  721. }
  722. }
  723. .text1 {
  724. font-size: 16px;
  725. color: #b3b8cc;
  726. font-weight: bold;
  727. }
  728. }
  729. }
  730. .center-box {
  731. height: 47%;
  732. margin-bottom: 20px;
  733. display: flex;
  734. justify-content: space-between;
  735. align-items: center;
  736. .content-box {
  737. position: relative;
  738. display: flex;
  739. flex-direction: column;
  740. width: 32%;
  741. height: 100%;
  742. background: var(--image-bj2) no-repeat center;
  743. background-size: 100% 100%;
  744. &:nth-child(2) {
  745. margin: 0px 20px;
  746. }
  747. .container-title {
  748. position: absolute;
  749. left: 50%;
  750. transform: translate(-50%, 0);
  751. top: 4px;
  752. color: #fff;
  753. }
  754. .container-content {
  755. position: absolute;
  756. width: 100%;
  757. top: 38px;
  758. height: calc(100% - 48px);
  759. overflow-y: auto;
  760. .container-content-box {
  761. position: relative;
  762. width: 100%;
  763. height: 80px;
  764. margin-bottom: 10px;
  765. background: var(--image-title) no-repeat center;
  766. background-size: 100% 100%;
  767. }
  768. .content-box-title {
  769. position: absolute;
  770. left: 10px;
  771. color: #fff;
  772. }
  773. .content-box-text {
  774. display: flex;
  775. justify-content: space-around;
  776. align-items: center;
  777. position: absolute;
  778. top: 22px;
  779. width: 100%;
  780. height: 58px;
  781. .box-text-z {
  782. display: flex;
  783. justify-content: space-between;
  784. align-items: center;
  785. height: 50px;
  786. width: 205px;
  787. padding: 0px 30px;
  788. background: var(--image-z) no-repeat center;
  789. background-size: 100% 100%;
  790. }
  791. .box-text-zt {
  792. display: flex;
  793. justify-content: space-between;
  794. align-items: center;
  795. height: 50px;
  796. width: 205px;
  797. padding: 0px 30px;
  798. background: var(--image-zt) no-repeat center;
  799. background-size: 100% 100%;
  800. }
  801. .box-text-zt1 {
  802. position: relative;
  803. display: flex;
  804. align-items: center;
  805. height: 50px;
  806. width: 258px;
  807. background: var(--image-zt1) no-repeat center;
  808. background-size: 100% 100%;
  809. }
  810. .box-text-time {
  811. display: flex;
  812. justify-content: space-between;
  813. align-items: center;
  814. height: 50px;
  815. width: 305px;
  816. padding: 0px 30px;
  817. background: var(--image-time) no-repeat center;
  818. background-size: 100% 100%;
  819. }
  820. .box-text-time1 {
  821. position: relative;
  822. display: flex;
  823. align-items: center;
  824. height: 50px;
  825. width: 298px;
  826. background: var(--image-time1) no-repeat center;
  827. background-size: 100% 100%;
  828. }
  829. .text-label {
  830. font-size: 12px;
  831. color: #fff
  832. }
  833. .text-label-hy {
  834. position: absolute;
  835. left: 50px;
  836. color: #fff;
  837. font-size: 12px
  838. }
  839. .text-val-hy {
  840. position: absolute;
  841. left: 115px;
  842. color: #fff;
  843. font-size: 12px;
  844. }
  845. .text-val-hy1 {
  846. position: absolute;
  847. left: 115px;
  848. color: #ff0000;
  849. font-size: 12px;
  850. }
  851. .text-val-hy2 {
  852. position: absolute;
  853. left: 115px;
  854. color: #91e609;
  855. font-size: 12px;
  856. }
  857. .text-val {
  858. font-size: 12px;
  859. color: #fff
  860. }
  861. .text-val1 {
  862. font-size: 12px;
  863. color: #ff0000
  864. }
  865. .text-val2 {
  866. font-size: 12px;
  867. color: #91e609
  868. }
  869. }
  870. }
  871. }
  872. }
  873. .center-box1 {
  874. height: 70%;
  875. // margin-bottom: 20px;
  876. display: flex;
  877. justify-content: flex-start;
  878. align-items: flex-start;
  879. flex-wrap: wrap;
  880. .content-box {
  881. position: relative;
  882. display: flex;
  883. flex-direction: column;
  884. width: calc(50% - 10px);
  885. height: calc(50% - 10px);
  886. background: var(--image-bj2) no-repeat center;
  887. background-size: 100% 100%;
  888. &:nth-child(1) {
  889. margin: 0px 20px 20px 0px;
  890. }
  891. &:nth-child(3) {
  892. margin: 0px 20px 0px 0px;
  893. }
  894. .container-title {
  895. position: absolute;
  896. left: 50%;
  897. transform: translate(-50%, 0);
  898. top: 4px;
  899. color: #fff;
  900. }
  901. .container-content {
  902. position: absolute;
  903. width: 100%;
  904. top: 38px;
  905. height: calc(100% - 48px);
  906. overflow-y: auto;
  907. .container-content-box {
  908. position: relative;
  909. width: 100%;
  910. height: 80px;
  911. margin-bottom: 10px;
  912. background: var(--image-title) no-repeat center;
  913. background-size: 100% 100%;
  914. }
  915. .content-box-title {
  916. position: absolute;
  917. left: 10px;
  918. color: #fff;
  919. }
  920. .content-box-text {
  921. display: flex;
  922. justify-content: space-around;
  923. align-items: center;
  924. position: absolute;
  925. top: 22px;
  926. width: 100%;
  927. height: 58px;
  928. .box-text-z {
  929. display: flex;
  930. justify-content: space-between;
  931. align-items: center;
  932. height: 50px;
  933. width: 205px;
  934. padding: 0px 30px;
  935. background: var(--image-z) no-repeat center;
  936. background-size: 100% 100%;
  937. }
  938. .box-text-zt {
  939. display: flex;
  940. justify-content: space-between;
  941. align-items: center;
  942. height: 50px;
  943. width: 205px;
  944. padding: 0px 30px;
  945. background: var(--image-zt) no-repeat center;
  946. background-size: 100% 100%;
  947. }
  948. .box-text-zt1 {
  949. position: relative;
  950. display: flex;
  951. align-items: center;
  952. height: 50px;
  953. width: 258px;
  954. background: var(--image-zt1) no-repeat center;
  955. background-size: 100% 100%;
  956. }
  957. .box-text-time {
  958. display: flex;
  959. justify-content: space-between;
  960. align-items: center;
  961. height: 50px;
  962. width: 305px;
  963. padding: 0px 30px;
  964. background: var(--image-time) no-repeat center;
  965. background-size: 100% 100%;
  966. }
  967. .box-text-time1 {
  968. position: relative;
  969. display: flex;
  970. align-items: center;
  971. height: 50px;
  972. width: 298px;
  973. background: var(--image-time1) no-repeat center;
  974. background-size: 100% 100%;
  975. }
  976. .text-label {
  977. font-size: 12px;
  978. color: #fff
  979. }
  980. .text-label-hy {
  981. position: absolute;
  982. left: 50px;
  983. color: #fff;
  984. font-size: 12px
  985. }
  986. .text-val-hy {
  987. position: absolute;
  988. left: 115px;
  989. color: #fff;
  990. font-size: 12px;
  991. }
  992. .text-val-hy1 {
  993. position: absolute;
  994. left: 115px;
  995. color: #ff0000;
  996. font-size: 12px;
  997. }
  998. .text-val-hy2 {
  999. position: absolute;
  1000. left: 115px;
  1001. color: #91e609;
  1002. font-size: 12px;
  1003. }
  1004. .text-val {
  1005. font-size: 12px;
  1006. color: #fff
  1007. }
  1008. .text-val1 {
  1009. font-size: 12px;
  1010. color: #ff0000
  1011. }
  1012. .text-val2 {
  1013. font-size: 12px;
  1014. color: #91e609
  1015. }
  1016. }
  1017. }
  1018. }
  1019. }
  1020. .center-box2 {
  1021. height: 100%;
  1022. display: flex;
  1023. justify-content: flex-start;
  1024. align-items: flex-start;
  1025. flex-wrap: wrap;
  1026. .content-box {
  1027. position: relative;
  1028. display: flex;
  1029. flex-direction: column;
  1030. width: calc(50% - 10px);
  1031. height: calc(50% - 10px);
  1032. background: var(--image-bj2) no-repeat center;
  1033. background-size: 100% 100%;
  1034. &:nth-child(1) {
  1035. margin: 0px 20px 20px 0px;
  1036. }
  1037. &:nth-child(3) {
  1038. margin: 0px 20px 0px 0px;
  1039. }
  1040. .container-title {
  1041. position: absolute;
  1042. left: 50%;
  1043. transform: translate(-50%, 0);
  1044. top: 4px;
  1045. color: #fff;
  1046. }
  1047. .container-content {
  1048. position: absolute;
  1049. width: 100%;
  1050. top: 38px;
  1051. height: calc(100% - 48px);
  1052. overflow-y: auto;
  1053. .container-content-box {
  1054. position: relative;
  1055. width: 100%;
  1056. height: 80px;
  1057. margin-bottom: 10px;
  1058. background: var(--image-title) no-repeat center;
  1059. background-size: 100% 100%;
  1060. }
  1061. .content-box-title {
  1062. position: absolute;
  1063. left: 10px;
  1064. color: #fff;
  1065. }
  1066. .content-box-text {
  1067. display: flex;
  1068. justify-content: space-around;
  1069. align-items: center;
  1070. position: absolute;
  1071. top: 22px;
  1072. width: 100%;
  1073. height: 58px;
  1074. .box-text-z {
  1075. display: flex;
  1076. justify-content: space-between;
  1077. align-items: center;
  1078. height: 50px;
  1079. width: 205px;
  1080. padding: 0px 30px;
  1081. background: var(--image-z) no-repeat center;
  1082. background-size: 100% 100%;
  1083. }
  1084. .box-text-zt {
  1085. display: flex;
  1086. justify-content: space-between;
  1087. align-items: center;
  1088. height: 50px;
  1089. width: 205px;
  1090. padding: 0px 30px;
  1091. background: var(--image-zt) no-repeat center;
  1092. background-size: 100% 100%;
  1093. }
  1094. .box-text-zt1 {
  1095. position: relative;
  1096. display: flex;
  1097. align-items: center;
  1098. height: 50px;
  1099. width: 258px;
  1100. background: var(--image-zt1) no-repeat center;
  1101. background-size: 100% 100%;
  1102. }
  1103. .box-text-time {
  1104. display: flex;
  1105. justify-content: space-between;
  1106. align-items: center;
  1107. height: 50px;
  1108. width: 305px;
  1109. padding: 0px 30px;
  1110. background: var(--image-time) no-repeat center;
  1111. background-size: 100% 100%;
  1112. }
  1113. .box-text-time1 {
  1114. position: relative;
  1115. display: flex;
  1116. align-items: center;
  1117. height: 50px;
  1118. width: 298px;
  1119. background: var(--image-time1) no-repeat center;
  1120. background-size: 100% 100%;
  1121. }
  1122. .text-label {
  1123. font-size: 12px;
  1124. color: #fff
  1125. }
  1126. .text-label-hy {
  1127. position: absolute;
  1128. left: 50px;
  1129. color: #fff;
  1130. font-size: 12px
  1131. }
  1132. .text-val-hy {
  1133. position: absolute;
  1134. left: 115px;
  1135. color: #fff;
  1136. font-size: 12px;
  1137. }
  1138. .text-val-hy1 {
  1139. position: absolute;
  1140. left: 115px;
  1141. color: #ff0000;
  1142. font-size: 12px;
  1143. }
  1144. .text-val-hy2 {
  1145. position: absolute;
  1146. left: 115px;
  1147. color: #91e609;
  1148. font-size: 12px;
  1149. }
  1150. .text-val {
  1151. font-size: 12px;
  1152. color: #fff
  1153. }
  1154. .text-val1 {
  1155. font-size: 12px;
  1156. color: #ff0000
  1157. }
  1158. .text-val2 {
  1159. font-size: 12px;
  1160. color: #91e609
  1161. }
  1162. }
  1163. }
  1164. }
  1165. }
  1166. .footer-box {
  1167. height: calc(38% - 40px);
  1168. padding: 10px;
  1169. background: var(--image-bj1) no-repeat center;
  1170. background-size: 100% 100%;
  1171. box-sizing: border-box;
  1172. .footer-title {
  1173. height: 30px;
  1174. display: flex;
  1175. justify-content: space-between;
  1176. align-items: center;
  1177. .echart-label {
  1178. font-family: 'douyuFont';
  1179. font-size: 14px;
  1180. color: #fff;
  1181. }
  1182. }
  1183. .echart-content {
  1184. height: calc(100% - 30px);
  1185. }
  1186. }
  1187. .footer-box1 {
  1188. height: calc(30% - 20px);
  1189. padding: 10px 15px;
  1190. background: var(--image-bj1) no-repeat center;
  1191. background-size: 100% 100%;
  1192. box-sizing: border-box;
  1193. .footer-title {
  1194. height: 30px;
  1195. display: flex;
  1196. justify-content: space-between;
  1197. align-items: center;
  1198. .echart-label {
  1199. font-family: 'douyuFont';
  1200. font-size: 16px;
  1201. color: #fff;
  1202. }
  1203. }
  1204. .echart-content {
  1205. height: calc(100% - 30px);
  1206. }
  1207. }
  1208. .content-s {
  1209. width: 100%;
  1210. height: 608px;
  1211. padding: 10px;
  1212. background: var(--image-bj1) no-repeat center;
  1213. background-size: 100% 100%;
  1214. box-sizing: border-box;
  1215. .title-b {
  1216. height: 30px;
  1217. line-height: 30px;
  1218. font-family: 'douyuFont';
  1219. font-size: 14px;
  1220. color: #fff;
  1221. }
  1222. .card-btn {
  1223. height: 28%;
  1224. margin-bottom: 10px;
  1225. display: flex;
  1226. justify-content: space-between;
  1227. .content-box {
  1228. position: relative;
  1229. width: 16%;
  1230. height: 100%;
  1231. background: var(--image-1) no-repeat center;
  1232. background-size: 100% 100%;
  1233. cursor: pointer;
  1234. .btn-label {
  1235. position: absolute;
  1236. left: 50%;
  1237. top: 0;
  1238. transform: translate(-50%);
  1239. font-size: 16px;
  1240. color: #fff;
  1241. }
  1242. .box-item {
  1243. position: absolute;
  1244. left: 50%;
  1245. transform: translate(-50%, 0);
  1246. width: 89%;
  1247. height: 16%;
  1248. padding: 0px 10px;
  1249. display: flex;
  1250. justify-content: space-between;
  1251. align-items: center;
  1252. background: var(--image-contetn) no-repeat center;
  1253. background-size: 100% 100%;
  1254. .text-t {
  1255. width: 17%;
  1256. color: #fff;
  1257. font-size: 12px;
  1258. }
  1259. .text-v {
  1260. width: 83%;
  1261. font-family: 'douyuFont';
  1262. font-size: 10px;
  1263. color: var(--vent-table-action-link);
  1264. display: flex;
  1265. justify-content: flex-end;
  1266. }
  1267. }
  1268. .box-item1 {
  1269. top: 24%;
  1270. }
  1271. .box-item2 {
  1272. top: 50%;
  1273. }
  1274. .box-item3 {
  1275. top: 75%;
  1276. }
  1277. }
  1278. .content-box1 {
  1279. position: relative;
  1280. width: 16%;
  1281. height: 100%;
  1282. background: var(--image-2) no-repeat center;
  1283. background-size: 100% 100%;
  1284. cursor: pointer;
  1285. .btn-label {
  1286. position: absolute;
  1287. left: 50%;
  1288. top: 0;
  1289. transform: translate(-50%);
  1290. font-size: 16px;
  1291. color: #fff;
  1292. }
  1293. .box-item {
  1294. position: absolute;
  1295. left: 50%;
  1296. transform: translate(-50%, 0);
  1297. width: 89%;
  1298. height: 16%;
  1299. padding: 0px 10px;
  1300. display: flex;
  1301. justify-content: space-between;
  1302. align-items: center;
  1303. background: var(--image-contetn) no-repeat center;
  1304. background-size: 100% 100%;
  1305. .text-t {
  1306. width: 17%;
  1307. color: #fff;
  1308. font-size: 12px;
  1309. }
  1310. .text-v {
  1311. width: 83%;
  1312. font-family: 'douyuFont';
  1313. font-size: 10px;
  1314. color: var(--vent-table-action-link);
  1315. display: flex;
  1316. justify-content: flex-end;
  1317. }
  1318. }
  1319. .box-item1 {
  1320. top: 19%;
  1321. }
  1322. .box-item2 {
  1323. top: 41%;
  1324. }
  1325. .box-item3 {
  1326. top: 63%;
  1327. }
  1328. }
  1329. }
  1330. .echart-box {
  1331. height: calc(72% - 41px);
  1332. border: 1px solid #114aac;
  1333. .title-f {
  1334. height: 40px;
  1335. padding: 0px 10px;
  1336. box-sizing: border-box;
  1337. display: flex;
  1338. justify-content: space-between;
  1339. align-items: center;
  1340. .title-text {
  1341. font-family: 'douyuFont';
  1342. font-size: 14px;
  1343. color: #fff;
  1344. }
  1345. }
  1346. .echarts-box {
  1347. height: calc(100% - 40px);
  1348. }
  1349. }
  1350. }
  1351. }
  1352. </style>