syzDetails.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  1. <template>
  2. <div class="syz-details">
  3. <!-- 头部按钮选项 -->
  4. <HeaderNav class="header" @firstRender="firstRender" :isAll="true" />
  5. <div class="buttonGroup">
  6. <el-button-group>
  7. <el-button
  8. size="small"
  9. @click="changeHeight('D')"
  10. :class="allHeight === 'D' ? 'showSty' : ''"
  11. >大图标
  12. </el-button>
  13. <el-button
  14. size="small"
  15. @click="changeHeight('Z')"
  16. :class="allHeight === 'Z' ? 'showSty' : ''"
  17. >中图标
  18. </el-button>
  19. <el-button
  20. size="small"
  21. @click="changeHeight('X')"
  22. :class="allHeight === 'X' ? 'showSty' : ''"
  23. >小图标
  24. </el-button>
  25. </el-button-group>
  26. </div>
  27. <div class="syzDetailsPaneItem">
  28. <div
  29. v-if="activeTab == -1"
  30. :style="allpageHeight"
  31. style="width: 100%; display: grid; overflow-y: auto"
  32. v-loading="loading"
  33. element-loading-background="rgba(4, 12, 11, 0.8)"
  34. element-loading-text="加载中..."
  35. >
  36. <!-- 小五台-->
  37. <div
  38. title="双击跳转详情"
  39. class="showAllSvgMsg"
  40. v-if="getStationName('XWT') != ''"
  41. :class="{ alarm: getAlarm('XWT') }"
  42. :style="getStyle(allHeight)"
  43. @dblclick="handleClick('XWT')"
  44. >
  45. <div class="cover"></div>
  46. <XWT class="booster-station-body" />
  47. <div class="showAllSvgMsg_bot">
  48. <span>{{ getStationName("XWT") }}</span>
  49. </div>
  50. </div>
  51. <!-- 败虎堡 -->
  52. <div
  53. class="showAllSvgMsg"
  54. title="双击跳转详情"
  55. v-if="getStationName('BHB') != ''"
  56. :class="{ alarm: getAlarm('BHB') }"
  57. :style="getStyle(allHeight)"
  58. @dblclick="handleClick('BHB')"
  59. >
  60. <div class="cover"></div>
  61. <BHB class="booster-station-body" />
  62. <div class="showAllSvgMsg_bot">
  63. <span>{{ getStationName("BHB") }}</span>
  64. </div>
  65. </div>
  66. <!-- 禹丰 -->
  67. <div
  68. class="showAllSvgMsg"
  69. title="双击跳转详情"
  70. v-if="getStationName('YF') != ''"
  71. :class="{ alarm: getAlarm('YF') }"
  72. :style="getStyle(allHeight)"
  73. @dblclick="handleClick('YF')"
  74. >
  75. <div class="cover"></div>
  76. <YF class="booster-station-body" />
  77. <div class="showAllSvgMsg_bot">
  78. <span>{{ getStationName("YF") }}</span>
  79. </div>
  80. </div>
  81. <!-- 败虎堡三期 -->
  82. <div
  83. class="showAllSvgMsg"
  84. title="双击跳转详情"
  85. v-if="getStationName('BHB3') != ''"
  86. :class="{ alarm: getAlarm('BHB3') }"
  87. :style="getStyle(allHeight)"
  88. @dblclick="handleClick('BHB3')"
  89. >
  90. <div class="cover"></div>
  91. <BHBSQ class="booster-station-body" />
  92. <div class="showAllSvgMsg_bot">
  93. <span>{{ getStationName("BHB3") }}</span>
  94. </div>
  95. </div>
  96. <!-- 盘道梁 -->
  97. <div
  98. class="showAllSvgMsg"
  99. title="双击跳转详情"
  100. v-if="getStationName('PDL') != ''"
  101. :class="{ alarm: getAlarm('PDL') }"
  102. :style="getStyle(allHeight)"
  103. @dblclick="handleClick('PDL')"
  104. >
  105. <div class="cover"></div>
  106. <PDL class="booster-station-body" />
  107. <div class="showAllSvgMsg_bot">
  108. <span>{{ getStationName("PDL") }}</span>
  109. </div>
  110. </div>
  111. <!-- 牛家岭 -->
  112. <div
  113. class="showAllSvgMsg"
  114. title="双击跳转详情"
  115. v-if="getStationName('NJL') != ''"
  116. :class="{ alarm: getAlarm('NJL') }"
  117. :style="getStyle(allHeight)"
  118. @dblclick="handleClick('NJL')"
  119. >
  120. <div class="cover"></div>
  121. <NJL class="booster-station-body" />
  122. <div class="showAllSvgMsg_bot">
  123. <span>{{ getStationName("NJL") }}</span>
  124. </div>
  125. </div>
  126. <!-- 丁家窑 -->
  127. <div
  128. class="showAllSvgMsg"
  129. title="双击跳转详情"
  130. v-if="getStationName('DJY') != ''"
  131. :class="{ alarm: getAlarm('DJY') }"
  132. :style="getStyle(allHeight)"
  133. @dblclick="handleClick('DJY')"
  134. >
  135. <div class="cover"></div>
  136. <DJY class="booster-station-body" />
  137. <div class="showAllSvgMsg_bot">
  138. <span>{{ getStationName("DJY") }}</span>
  139. </div>
  140. </div>
  141. <!-- 高家堰 -->
  142. <div
  143. class="showAllSvgMsg"
  144. title="双击跳转详情"
  145. v-if="getStationName('GJY') != ''"
  146. :class="{ alarm: getAlarm('GJY') }"
  147. :style="getStyle(allHeight)"
  148. @dblclick="handleClick('GJY')"
  149. >
  150. <div class="cover"></div>
  151. <GJY class="booster-station-body" />
  152. <div class="showAllSvgMsg_bot">
  153. <span>{{ getStationName("GJY") }}</span>
  154. </div>
  155. </div>
  156. <!-- 平头镇 -->
  157. <div
  158. class="showAllSvgMsg"
  159. title="双击跳转详情"
  160. v-if="getStationName('PTZ') != ''"
  161. :class="{ alarm: getAlarm('PTZ') }"
  162. :style="getStyle(allHeight)"
  163. @dblclick="handleClick('PTZ')"
  164. >
  165. <div class="cover"></div>
  166. <PTZ class="booster-station-body" />
  167. <div class="showAllSvgMsg_bot">
  168. <span>{{ getStationName("PTZ") }}</span>
  169. </div>
  170. </div>
  171. <!-- 红石峁 -->
  172. <div
  173. class="showAllSvgMsg"
  174. title="双击跳转详情"
  175. v-if="getStationName('HSM') != ''"
  176. :class="{ alarm: getAlarm('HSM') }"
  177. :style="getStyle(allHeight)"
  178. @dblclick="handleClick('HSM')"
  179. >
  180. <div class="cover"></div>
  181. <HSM class="booster-station-body" />
  182. <div class="showAllSvgMsg_bot">
  183. <span>{{ getStationName("HSM") }}</span>
  184. </div>
  185. </div>
  186. <!-- 朱坑 -->
  187. <div
  188. class="showAllSvgMsg"
  189. title="双击跳转详情"
  190. v-if="getStationName('ZK') != ''"
  191. :style="getStyle(allHeight)"
  192. :class="{ alarm: getAlarm('ZK') }"
  193. @dblclick="handleClick('ZK')"
  194. >
  195. <div class="cover"></div>
  196. <ZK class="booster-station-body" />
  197. <div class="showAllSvgMsg_bot">
  198. <span>{{ getStationName("ZK") }}</span>
  199. </div>
  200. </div>
  201. <!-- 羊头崖 -->
  202. <div
  203. class="showAllSvgMsg"
  204. title="双击跳转详情"
  205. v-if="getStationName('YTY') != ''"
  206. :style="getStyle(allHeight)"
  207. :class="{ alarm: getAlarm('YTY') }"
  208. @dblclick="handleClick('YTY')"
  209. >
  210. <div class="cover"></div>
  211. <YTY class="booster-station-body" />
  212. <div class="showAllSvgMsg_bot">
  213. <span>{{ getStationName("YTY") }}</span>
  214. </div>
  215. </div>
  216. <!-- 尹灵芝 -->
  217. <div
  218. class="showAllSvgMsg"
  219. title="双击跳转详情"
  220. v-if="getStationName('YLZ') != ''"
  221. :style="getStyle(allHeight)"
  222. :class="{ alarm: getAlarm('YLZ') }"
  223. @dblclick="handleClick('YLZ')"
  224. >
  225. <div class="cover"></div>
  226. <YLZ class="booster-station-body" />
  227. <div class="showAllSvgMsg_bot">
  228. <span>{{ getStationName("YLZ") }}</span>
  229. </div>
  230. </div>
  231. <!-- 米粮局 -->
  232. <!-- <div
  233. class="showAllSvgMsg" title="双击跳转详情" v-if="getStationName('')!=''"
  234. :style="getStyle(allHeight)"
  235. @dblclick="handleClick('MLJ')"
  236. >
  237. <div class="cover"></div>
  238. <MLJ class="booster-station-body" />
  239. <div class="showAllSvgMsg_bot">
  240. <span>{{ getStationName("MLJ") }}</span>
  241. </div>
  242. </div> -->
  243. </div>
  244. <!-- 风场 *************** -->
  245. <!-- 光伏 *************** -->
  246. <div
  247. v-if="activeTab == -2"
  248. :style="allpageHeight"
  249. v-loading="loading"
  250. element-loading-background="rgba(4, 12, 11, 0.8)"
  251. style="width: 100%; display: grid; overflow-y: auto"
  252. >
  253. <!-- 右玉右卫 -->
  254. <div
  255. class="showAllSvgMsg"
  256. title="双击跳转详情"
  257. v-if="getStationName('YY') != ''"
  258. :style="getStyle(allHeight)"
  259. :class="{ alarm: getAlarm('YY') }"
  260. @dblclick="handleClick('YY')"
  261. >
  262. <div class="cover"></div>
  263. <GFyouyuyouwei class="booster-station-body" />
  264. <div class="showAllSvgMsg_bot">
  265. <span>{{ getStationName("YY") }}</span>
  266. </div>
  267. </div>
  268. <!-- 平鲁阻虎 -->
  269. <div
  270. class="showAllSvgMsg"
  271. title="双击跳转详情"
  272. v-if="getStationName('PL') != ''"
  273. :style="getStyle(allHeight)"
  274. :class="{ alarm: getAlarm('PL') }"
  275. @dblclick="handleClick('PL')"
  276. >
  277. <div class="cover"></div>
  278. <GFpingluzuhu class="booster-station-body" />
  279. <div class="showAllSvgMsg_bot">
  280. <span>{{ getStationName("PL") }}</span>
  281. </div>
  282. </div>
  283. <!-- 应县晶辉 -->
  284. <div
  285. class="showAllSvgMsg"
  286. title="双击跳转详情"
  287. v-if="getStationName('YX') != ''"
  288. :style="getStyle(allHeight)"
  289. :class="{ alarm: getAlarm('YX') }"
  290. @dblclick="handleClick('YX')"
  291. >
  292. <div class="cover"></div>
  293. <GFyingxianjinghui class="booster-station-body" />
  294. <div class="showAllSvgMsg_bot">
  295. <span>{{ getStationName("YX") }}</span>
  296. </div>
  297. </div>
  298. <!-- 天镇旭升 -->
  299. <div
  300. class="showAllSvgMsg"
  301. title="双击跳转详情"
  302. v-if="getStationName('TZ') != ''"
  303. :style="getStyle(allHeight)"
  304. :class="{ alarm: getAlarm('TZ') }"
  305. @dblclick="handleClick('TZ')"
  306. >
  307. <GFtianzhenxusheng class="booster-station-body" />
  308. <div class="showAllSvgMsg_bot">
  309. <span>{{ getStationName("TZ") }}</span>
  310. </div>
  311. </div>
  312. <!-- 阳高蔚家堡 -->
  313. <div
  314. class="showAllSvgMsg"
  315. title="双击跳转详情"
  316. v-if="getStationName('YG') != ''"
  317. :style="getStyle(allHeight)"
  318. :class="{ alarm: getAlarm('YG') }"
  319. @dblclick="handleClick('YG')"
  320. >
  321. <div class="cover"></div>
  322. <GFyanggaoweijiabao class="booster-station-body" />
  323. <div class="showAllSvgMsg_bot">
  324. <span>{{ getStationName("YG") }}</span>
  325. </div>
  326. </div>
  327. <!-- 方山孙家山 -->
  328. <div
  329. class="showAllSvgMsg"
  330. title="双击跳转详情"
  331. v-if="getStationName('FS') != ''"
  332. :style="getStyle(allHeight)"
  333. :class="{ alarm: getAlarm('FS') }"
  334. @dblclick="handleClick('FS')"
  335. >
  336. <div class="cover"></div>
  337. <GFfangshansunjiashan class="booster-station-body" />
  338. <div class="showAllSvgMsg_bot">
  339. <span>{{ getStationName("FS") }}</span>
  340. </div>
  341. </div>
  342. <!-- 山阴荣新 -->
  343. <div
  344. class="showAllSvgMsg"
  345. title="双击跳转详情"
  346. v-if="getStationName('SY') != ''"
  347. :style="getStyle(allHeight)"
  348. :class="{ alarm: getAlarm('SY') }"
  349. @dblclick="handleClick('SY')"
  350. >
  351. <div class="cover"></div>
  352. <GFshanyinrongxin class="booster-station-body" />
  353. <div class="showAllSvgMsg_bot">
  354. <span>{{ getStationName("SY") }}</span>
  355. </div>
  356. </div>
  357. <!-- 怀仁初晨 -->
  358. <div
  359. class="showAllSvgMsg"
  360. title="双击跳转详情"
  361. v-if="getStationName('HR') != ''"
  362. :style="getStyle(allHeight)"
  363. :class="{ alarm: getAlarm('HR') }"
  364. @dblclick="handleClick('HR')"
  365. >
  366. <div class="cover"></div>
  367. <GFhuairenchuchen class="booster-station-body" />
  368. <div class="showAllSvgMsg_bot">
  369. <span>{{ getStationName("HR") }}</span>
  370. </div>
  371. </div>
  372. <!-- 屯留吾元 -->
  373. <div
  374. class="showAllSvgMsg"
  375. title="双击跳转详情"
  376. v-if="getStationName('TL') != ''"
  377. :style="getStyle(allHeight)"
  378. :class="{ alarm: getAlarm('TL') }"
  379. @dblclick="handleClick('TL')"
  380. >
  381. <div class="cover"></div>
  382. <GFtunliuwuyuan class="booster-station-body" />
  383. <div class="showAllSvgMsg_bot">
  384. <span>{{ getStationName("TL") }}</span>
  385. </div>
  386. </div>
  387. <!-- 繁峙均然 -->
  388. <div
  389. class="showAllSvgMsg"
  390. title="双击跳转详情"
  391. v-if="getStationName('JR') != ''"
  392. :style="getStyle(allHeight)"
  393. :class="{ alarm: getAlarm('JR') }"
  394. @dblclick="handleClick('JR')"
  395. >
  396. <div class="cover"></div>
  397. <GFfanshijunran class="booster-station-body" />
  398. <div class="showAllSvgMsg_bot">
  399. <span>{{ getStationName("JR") }}</span>
  400. </div>
  401. </div>
  402. </div>
  403. </div>
  404. </div>
  405. </template>
  406. <script>
  407. import BSHeaderButton from "../factoryMonitor/components/BSHeaderButton.vue";
  408. // 风场
  409. import GJY from "../factoryMonitor/windPowerPlant/boosterStation/components/GJY.vue";
  410. import BHB from "../factoryMonitor/windPowerPlant/boosterStation/components/BHB.vue";
  411. import BHBSQ from "../factoryMonitor/windPowerPlant/boosterStation/components/BHBSQ.vue";
  412. import DJY from "../factoryMonitor/windPowerPlant/boosterStation/components/DJY.vue";
  413. import HSM from "../factoryMonitor/windPowerPlant/boosterStation/components/HSM.vue";
  414. import NJL from "../factoryMonitor/windPowerPlant/boosterStation/components/NJL.vue";
  415. import PDL from "../factoryMonitor/windPowerPlant/boosterStation/components/PDL.vue";
  416. import PTZ from "../factoryMonitor/windPowerPlant/boosterStation/components/PTZ.vue";
  417. import XWT from "../factoryMonitor/windPowerPlant/boosterStation/components/XWT.vue";
  418. import YTY from "../factoryMonitor/windPowerPlant/boosterStation/components/YTY.vue";
  419. import YLZ from "../factoryMonitor/windPowerPlant/boosterStation/components/YLZ.vue";
  420. import YF from "../factoryMonitor/windPowerPlant/boosterStation/components/YF.vue";
  421. import ZK from "../factoryMonitor/windPowerPlant/boosterStation/components/ZK.vue";
  422. import MLJ from "../factoryMonitor/windPowerPlant/boosterStation/components/MLJ.vue";
  423. import GFshanyinrongxin from "../factoryMonitor/photovoltaic/lightBoosterStation/components/shanyinrongxin.vue";
  424. import GFfangshansunjiashan from "../factoryMonitor/photovoltaic/lightBoosterStation/components/fangshansunjiashan.vue";
  425. import GFfanshijunran from "../factoryMonitor/photovoltaic/lightBoosterStation/components/fanshijunran.vue";
  426. import GFhuairenchuchen from "../factoryMonitor/photovoltaic/lightBoosterStation/components/huairenchuchen.vue";
  427. import GFpingluzuhu from "../factoryMonitor/photovoltaic/lightBoosterStation/components/pingluzuhu.vue";
  428. import GFtianzhenxusheng from "../factoryMonitor/photovoltaic/lightBoosterStation/components/tianzhenxusheng.vue";
  429. import GFtunliuwuyuan from "../factoryMonitor/photovoltaic/lightBoosterStation/components/tunliuwuyuan.vue";
  430. import GFyanggaoweijiabao from "../factoryMonitor/photovoltaic/lightBoosterStation/components/yanggaoweijiabao.vue";
  431. import GFyingxianjinghui from "../factoryMonitor/photovoltaic/lightBoosterStation/components/yingxianjinghui.vue";
  432. import GFyouyuyouwei from "../factoryMonitor/photovoltaic/lightBoosterStation/components/youyuyouwei.vue";
  433. import HeaderNav from "@/components/headerNavSta/index.vue";
  434. import { GetBoosterlist } from "@/api/factoryMonitor/index.js";
  435. export default {
  436. name: "boosterStation",
  437. components: {
  438. HeaderNav,
  439. // BSHeaderButton,
  440. GJY,
  441. BHB,
  442. BHBSQ,
  443. MLJ,
  444. PDL,
  445. PTZ,
  446. XWT,
  447. YTY,
  448. YLZ,
  449. YF,
  450. ZK,
  451. NJL,
  452. HSM,
  453. DJY,
  454. GFshanyinrongxin,
  455. GFfangshansunjiashan,
  456. GFfanshijunran,
  457. GFhuairenchuchen,
  458. GFpingluzuhu,
  459. GFtianzhenxusheng,
  460. GFtunliuwuyuan,
  461. GFyanggaoweijiabao,
  462. GFyingxianjinghui,
  463. GFyouyuyouwei,
  464. // ABS,
  465. },
  466. data() {
  467. return {
  468. loading: false,
  469. wpId: "",
  470. activeTab: -1,
  471. allHeight: "D", //图标选项
  472. stationList: [],
  473. stationListAll: [],
  474. };
  475. },
  476. created() {
  477. this.loading = true;
  478. },
  479. computed: {
  480. allpageHeight() {
  481. let obj = {
  482. height: "calc(100% - 34px)",
  483. gridGap: "15px",
  484. };
  485. if (this.allHeight == "D") {
  486. obj.gridTemplateColumns = "auto auto auto";
  487. } else if (this.allHeight == "Z") {
  488. obj.gridTemplateColumns = "auto auto auto auto";
  489. } else if (this.allHeight == "X") {
  490. obj.gridTemplateColumns = "auto auto auto auto auto";
  491. obj.gridAutoRows = "245px";
  492. }
  493. return obj;
  494. },
  495. boosterList() {
  496. return this.$store.state.boosterList;
  497. },
  498. alarmList() {
  499. return this.$store.state.alarmList;
  500. },
  501. },
  502. methods: {
  503. firstRender(activeTab) {
  504. this.activeTab = activeTab;
  505. this.stationList = this.filterBooster(activeTab);
  506. this.loading = false;
  507. },
  508. filterBooster(type) {
  509. return type == -1
  510. ? this.boosterList.filter((item) =>
  511. item.windpowerstationId.includes("FDC")
  512. )
  513. : this.boosterList.filter((item) =>
  514. item.windpowerstationId.includes("GDC")
  515. );
  516. },
  517. changeHeight(type) {
  518. this.allHeight = type;
  519. },
  520. getAlarm(key) {
  521. if (this.alarmList && this.alarmList.length) {
  522. // for (let a in this.alarmList) {
  523. // if (a.includes(key)) return this.alarmList[a];
  524. // }
  525. let a = this.alarmList.find((item) => {
  526. for (let b in item) {
  527. if (b.includes(key)) return item;
  528. }
  529. });
  530. return a ? Object.values(a)[0] : false;
  531. }
  532. },
  533. getStationName(key, type = "") {
  534. if (this.boosterList.length) {
  535. let ele = this.boosterList.find((item) => {
  536. let arr = item.windpowerstationId.split("_");
  537. if (arr[2] == key) {
  538. return item;
  539. }
  540. });
  541. if (type && type.length) {
  542. return ele[type];
  543. }
  544. return ele?.name ? ele?.name : "";
  545. }
  546. },
  547. getStyle(type) {
  548. if (type === "D") {
  549. return {
  550. height: "400px",
  551. };
  552. } else if (type === "Z") {
  553. return {
  554. height: "285px",
  555. };
  556. } else {
  557. return {
  558. height: "245px",
  559. };
  560. }
  561. },
  562. // getStation() {
  563. // GetBoosterlist().then((res) => {
  564. // if (res.data && res.data.code == 200) {
  565. // this.stationListAll = res.data.data;
  566. // this.stationList = this.filterBooster(this.activeTab);
  567. // this.loading = false;
  568. // }
  569. // });
  570. // },
  571. handleClick(key) {
  572. if (this.activeTab == -1) {
  573. this.$router.push({
  574. path: "/stateMonitor/factoryMonitor/windPowerPlant/boosterStation",
  575. query: {
  576. wpid: this.getStationName(key, "windpowerstationId"),
  577. bootid: this.getStationName(key, "id"),
  578. wpname: this.getStationName(key),
  579. },
  580. });
  581. } else if (this.activeTab == -2) {
  582. this.$router.push({
  583. path: "/stateMonitor/factoryMonitor/photovoltaic/lightBoosterStation",
  584. query: {
  585. wpid: this.getStationName(key, "windpowerstationId"),
  586. bootid: this.getStationName(key, "id"),
  587. wpname: this.getStationName(key),
  588. },
  589. });
  590. }
  591. },
  592. },
  593. };
  594. </script>
  595. <style lang="less" scoped>
  596. .syz-details {
  597. height: 100%;
  598. padding-top: 16px;
  599. position: relative;
  600. .header {
  601. margin-top: 0px;
  602. }
  603. .buttonGroup {
  604. position: absolute;
  605. top: 16px;
  606. right: 20px;
  607. display: flex;
  608. .el-button-group {
  609. .el-button {
  610. min-height: 30px !important;
  611. background-color: rgba(5, 187, 76, 0.2);
  612. border: 1px solid #3b6c53;
  613. color: #b3b3b3;
  614. }
  615. .showSty {
  616. border: 1px solid #3b6c53;
  617. background-color: rgba(5, 187, 76, 0.5);
  618. color: #ffffff;
  619. outline: 0;
  620. }
  621. }
  622. }
  623. }
  624. .syzDetailsPaneItem {
  625. padding: 0 20px 10px 20px;
  626. height: calc(100% - 57px);
  627. .warningMaskNew {
  628. background-color: rgba(186, 50, 55, 0.5);
  629. animation: fade 2000ms infinite;
  630. -webkit-animation: fade 2000ms infinite;
  631. }
  632. @keyframes fade {
  633. from {
  634. opacity: 0.7;
  635. }
  636. 50% {
  637. opacity: 0.3;
  638. }
  639. to {
  640. opacity: 0.7;
  641. }
  642. }
  643. @-webkit-keyframes fade {
  644. from {
  645. opacity: 0.7;
  646. }
  647. 50% {
  648. opacity: 0.3;
  649. }
  650. to {
  651. opacity: 0.7;
  652. }
  653. }
  654. .showAllSvgMsg {
  655. // border: 3px solid #646464;
  656. background: url("~@/assets/imgs/syz-bg.png") no-repeat;
  657. background-size: 100% 100%;
  658. background-position: center;
  659. border-radius: 4px;
  660. margin-right: 15px;
  661. margin-bottom: 15px;
  662. position: relative;
  663. cursor: pointer;
  664. &.alarm {
  665. background: fade(#3e0707, 50);
  666. border: 1px solid #3e0707;
  667. box-shadow: 0 0 2px rgba(#3e0707, 0.3);
  668. overflow: hidden;
  669. -webkit-animation-timing-function: ease-in-out;
  670. -webkit-animation-name: breathe;
  671. -webkit-animation-duration: 800ms;
  672. -webkit-animation-iteration-count: infinite;
  673. -webkit-animation-direction: alternate;
  674. .showAllSvgMsg_bot {
  675. background: rgba(#87240f, 0.5);
  676. span {
  677. color: rgba(#fff, 0.5);
  678. }
  679. }
  680. &:hover {
  681. .showAllSvgMsg_bot {
  682. background: rgba(#87240f, 1);
  683. span {
  684. color: #fff;
  685. }
  686. }
  687. }
  688. }
  689. @-webkit-keyframes breathe {
  690. 0% {
  691. // opacity: 0.4;
  692. box-shadow: 0 0 2px rgba(#3e0707, 0.4), 0 0 1px rgba(#3e0707, 0.1) inset;
  693. }
  694. 100% {
  695. // opacity: 1;
  696. border: 1px solid rgba(206, 42, 17, 0.7);
  697. box-shadow: 0 0 30px #780707, 0 0 20px #780707 inset;
  698. }
  699. }
  700. &:hover {
  701. .showAllSvgMsg_bot {
  702. background: #1f5533;
  703. span {
  704. color: #fff;
  705. }
  706. }
  707. }
  708. .cover {
  709. position: absolute;
  710. background: transparent;
  711. height: calc(100% - 40px);
  712. width: 100%;
  713. z-index: 99;
  714. }
  715. .booster-station-body {
  716. height: calc(100% - 40px);
  717. width: 100%;
  718. padding: 2px;
  719. }
  720. .showAllSvgMsg_bot {
  721. background: #0b2612;
  722. border-radius: 0 0 4px 4px;
  723. height: 40px;
  724. text-align: center;
  725. span {
  726. position: relative;
  727. top: 10px;
  728. font-weight: bold;
  729. color: rgba(255, 255, 255, 0.5);
  730. }
  731. }
  732. }
  733. .alarmIconBox {
  734. position: absolute;
  735. right: 0;
  736. top: 0;
  737. cursor: pointer;
  738. i {
  739. font-size: 20px;
  740. }
  741. }
  742. }
  743. </style>