App.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. <template>
  2. <div
  3. v-if="!showSisView"
  4. id="screen"
  5. :style="{
  6. width: `${style.width}px`,
  7. height: `${style.height}px`,
  8. transform: `${style.transform}`,
  9. }"
  10. >
  11. <div v-if="isLogined" class="main">
  12. <div class="header-body" v-if="hideHeard === '0'">
  13. <div class="header-title" @click="handleClickJump()">
  14. <!-- <img v-if="$store.state.themeName === 'dark'" src="./assets/projectLogo.png" alt="" />
  15. <img v-if="$store.state.themeName === 'light'" src="./assets/light-projectLogo.png" alt="" /> -->
  16. <span
  17. :style="
  18. $store.state.themeName === 'dark'
  19. ? 'color:#fff; font-size:18px;font-family: SimHei'
  20. : 'color:#000'
  21. "
  22. >
  23. >>发电场站生产实时运营管理平台</span
  24. >
  25. </div>
  26. <div class="header-menu-body">
  27. <Header />
  28. </div>
  29. </div>
  30. <div
  31. class="menu-body"
  32. :class="{ hover: isFixed ? true : isShowMenu }"
  33. @mouseenter="showMenu"
  34. @mouseleave="hideMenu"
  35. v-show="$store.state?.menuData?.length"
  36. >
  37. <Menu />
  38. </div>
  39. <!-- <div>
  40. <el-menu
  41. class="lightMenu"
  42. :class="$store.state.themeName === 'light' ? 'show' : 'hidden'"
  43. :collapse="true"
  44. text-color="#ffffff"
  45. active-text-color="#6262a2"
  46. background-color="#36348e"
  47. @select="selectMenu"
  48. v-if="hideMenus === '0' && $store.state.menuData.length"
  49. >
  50. <el-sub-menu
  51. :index="index"
  52. :title="item.text"
  53. v-for="(item, index) in menuData"
  54. :key="index"
  55. >
  56. <template #title>
  57. <router-link :to="item.path">
  58. <el-icon>
  59. <SvgIcon :svgid="item.icon" />
  60. </el-icon>
  61. </router-link>
  62. </template>
  63. <el-menu-item-group
  64. v-for="(menu, idx) in item.children"
  65. :index="idx"
  66. :key="idx"
  67. >
  68. <router-link :to="menu.path">
  69. <el-menu-item :index="index + '-' + idx">{{
  70. menu.text
  71. }}</el-menu-item>
  72. </router-link>
  73. </el-menu-item-group>
  74. </el-sub-menu>
  75. </el-menu>
  76. </div> -->
  77. <div
  78. class="main-body"
  79. :style="{ paddingLeft: isFixed && menuLength > 0 ? '52px' : 0 }"
  80. >
  81. <router-view />
  82. </div>
  83. <alarmBadge />
  84. </div>
  85. <div v-else class="login"><login-page @onLogin="login" /></div>
  86. </div>
  87. </template>
  88. <script>
  89. // 导入header.vue文件
  90. import alarmBadge from "@/components/alarm-badge/index.vue";
  91. import Menu from "@/views/layout/Menu.vue";
  92. import Header from "@/views/layout/Header.vue";
  93. import LoginPage from "./views/layout/login-page.vue";
  94. import { GetBoosterlist } from "@/api/factoryMonitor/index.js";
  95. import { getApiWeatherstation } from "@/api/monthlyPerformanceAnalysis";
  96. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  97. import { GetDeviceTableData } from "@/api/zhbj/index.js";
  98. import dayjs from "dayjs";
  99. import $ from "jquery";
  100. export default {
  101. components: {
  102. Menu,
  103. Header,
  104. LoginPage,
  105. alarmBadge,
  106. SvgIcon,
  107. },
  108. data() {
  109. return {
  110. isShowMenu: false,
  111. // 当前子系统
  112. root: "",
  113. // isLogined: localStorage.getItem("loginState") || false,
  114. showSisView: false,
  115. memuCloseTimeout: null,
  116. menuData: [],
  117. hideMenus: "0",
  118. hideHeard: "0",
  119. style: {
  120. width: "1920",
  121. height: "1080",
  122. fontsize: "16px",
  123. transform: "scaleY(1) scaleX(1) translate(-50%, -50%)",
  124. },
  125. };
  126. },
  127. computed: {
  128. isLogined() {
  129. return this.$store.state.user?.loginState;
  130. },
  131. isFixed() {
  132. return this.$store.state?.isFixed;
  133. },
  134. menuLength() {
  135. return this.$store.state?.menuData?.length;
  136. },
  137. },
  138. created() {},
  139. mounted() {
  140. let that = this;
  141. that.setScale();
  142. /*窗口改变事件*/
  143. $(window).resize(() => {
  144. that.setScale();
  145. });
  146. },
  147. unmounted() {
  148. console.log("离开标记", this.socketLeaveFlag);
  149. },
  150. methods: {
  151. getScale() {
  152. const w = window.innerWidth / this.style.width;
  153. const h = window.innerHeight / this.style.height;
  154. const d = window.devicePixelRatio;
  155. // let f = 16;
  156. // if (d > 1) {
  157. // f = 18;
  158. // }
  159. return { x: w, y: h };
  160. },
  161. setScale() {
  162. let scale = this.getScale();
  163. this.style.transform =
  164. "scaleY(" + scale.y + ") scaleX(" + scale.x + ") translate(-50%, -50%)";
  165. },
  166. // 切换子系统事件
  167. HeaderMenuClick(data) {
  168. this.root = data.id;
  169. },
  170. showMenu() {
  171. if (!this.isFixed) {
  172. this.isShowMenu = true;
  173. clearTimeout(this.memuCloseTimeout);
  174. this.memuCloseTimeout = null;
  175. }
  176. },
  177. hideMenu() {
  178. if (!this.isFixed) {
  179. this.memuCloseTimeout = setTimeout(() => {
  180. this.isShowMenu = false;
  181. }, 500);
  182. }
  183. },
  184. getBooster() {
  185. GetBoosterlist().then((res) => {
  186. if (res.data && res.data.code == 200) {
  187. this.$store.commit("changeBooster", res.data.data);
  188. }
  189. });
  190. },
  191. // 获取测风塔
  192. async getCftlist() {
  193. const { data: datas } = await getApiWeatherstation();
  194. this.$store.commit("changeCft", datas.data);
  195. },
  196. login() {
  197. this.$store.commit("user/SET_LOGINSTATE", true);
  198. },
  199. },
  200. watch: {
  201. "$store.state.menuData"(res) {
  202. this.menuData = res || [];
  203. },
  204. isLogined: {
  205. handler(res) {
  206. if (!res && this.socketObj) {
  207. // 离开标记
  208. this.socketLeaveFlag = true;
  209. // 关闭WebSocket
  210. this.socketObj.close();
  211. }
  212. if (res) {
  213. this.getBooster();
  214. this.getCftlist();
  215. }
  216. },
  217. immediate: true,
  218. },
  219. "$store.state.moudleName"(msg) {
  220. if (window.__MODE__.showModuleName && msg) {
  221. this.BASE.showMsg({
  222. type: this.$store.state.themeName === "dark" ? "success" : "warning",
  223. showClose: true,
  224. msg,
  225. });
  226. }
  227. },
  228. },
  229. };
  230. </script>
  231. <style lang="less">
  232. @import "~@/assets/styles/main.less";
  233. #screen {
  234. z-index: 100;
  235. transform-origin: 0 0;
  236. position: fixed;
  237. left: 50%;
  238. top: 50%;
  239. transition: 0.3s;
  240. }
  241. .alarmDeligo {
  242. z-index: 2003;
  243. position: relative;
  244. img {
  245. width: 43px;
  246. max-width: 43px;
  247. height: 43px;
  248. z-index: 3;
  249. }
  250. img:first-child {
  251. width: 53px;
  252. height: 57px;
  253. max-width: 53px;
  254. top: -7px;
  255. left: -5px;
  256. position: absolute;
  257. z-index: 3;
  258. }
  259. }
  260. * {
  261. box-sizing: border-box;
  262. &::-webkit-scrollbar {
  263. width: 6px;
  264. height: 8px;
  265. }
  266. &::-webkit-scrollbar-track-piece {
  267. background-color: rgba(255, 255, 255, 0.05);
  268. border-radius: 4px;
  269. }
  270. &::-webkit-scrollbar-thumb {
  271. background-color: fade(@gray, 75);
  272. border-radius: 4px;
  273. outline: none;
  274. outline-offset: 0px;
  275. border: none;
  276. }
  277. }
  278. body {
  279. margin: 0;
  280. background: #fff;
  281. color: #fff;
  282. // background-image: url("./assets/background.png");
  283. background: rgb(4, 12, 11);
  284. background-size: cover;
  285. font-size: @fontsize;
  286. font-family: @defalut-font-family;
  287. }
  288. @menuWidth: 51.28px;
  289. @headerHeight: 59px;
  290. .main {
  291. width: 100%;
  292. height: 100%;
  293. display: flex;
  294. flex-wrap: wrap;
  295. overflow: hidden;
  296. .header-body {
  297. z-index: 2;
  298. // background: radial-gradient(closest-corner at 22% 40%, #2d5a47, #040d0a, #040d0a);
  299. // flex: 0 0 100%;
  300. width: 100%;
  301. display: flex;
  302. flex-direction: row;
  303. height: @headerHeight;
  304. border-bottom: 1px solid #142b29;
  305. .header-title {
  306. padding-left: 20px;
  307. margin: auto;
  308. color: #fff;
  309. }
  310. .header-menu-body {
  311. flex-grow: 1;
  312. }
  313. }
  314. .menu-body {
  315. position: absolute;
  316. display: flex;
  317. flex-direction: column;
  318. align-items: center;
  319. justify-content: space-between;
  320. flex: 0 0 @menuWidth;
  321. width: @menuWidth;
  322. height: calc(100% - @headerHeight);
  323. // height: calc(100vh - 59px);
  324. top: @headerHeight;
  325. // top: 59px;
  326. background-color: fade(#192a26, 75%);
  327. z-index: 2002;
  328. opacity: 0;
  329. transition: opacity 0.2s;
  330. transition-timing-function: ease-in;
  331. // transform: translate(-@menuWidth);
  332. &:hover,
  333. &.hover {
  334. opacity: 1;
  335. transition: opacity 0.2s;
  336. transition-timing-function: ease-out;
  337. transform: translate(0);
  338. }
  339. }
  340. .main-body {
  341. flex: 0 0 100%;
  342. max-width: 100%;
  343. height: calc(100% - @headerHeight);
  344. // padding: 1.481vh;
  345. // transition: flex 0.1s, margin-left 0.1s;
  346. // transition-timing-function: ease-in-out;
  347. // &.show-menu {
  348. // flex: 0 0 calc(100vw - @menuWidth);
  349. // margin-left: @menuWidth;
  350. // transition: flex 0.1s, margin-left 0.1s;
  351. // transition-timing-function: ease-in-out;
  352. // }
  353. }
  354. .el-table__body tr.current-row > td {
  355. color: #fff;
  356. background: rgba(66, 66, 66, 0.66) !important;
  357. }
  358. .el-transfer-panel {
  359. width: 450px !important;
  360. height: 73vh;
  361. background-color: #111d1c !important;
  362. border: 1px solid #999999 !important;
  363. .el-transfer-panel__body {
  364. height: 100% !important;
  365. .el-transfer-panel__list {
  366. height: 100% !important;
  367. }
  368. }
  369. }
  370. .el-transfer-panel .el-transfer-panel__header {
  371. background-color: #111d1c !important;
  372. color: #05bb4c !important;
  373. .el-checkbox .el-checkbox__label {
  374. color: #05bb4c !important;
  375. }
  376. }
  377. .el-button--primary.is-disabled,
  378. .el-button--primary.is-disabled:active,
  379. .el-button--primary.is-disabled:focus,
  380. .el-button--primary.is-disabled:hover {
  381. background-color: #05bb4c;
  382. border-color: #05bb4c;
  383. }
  384. }
  385. .login {
  386. width: 100%;
  387. height: 100%;
  388. background: url("~@/assets/login-bg.png") no-repeat;
  389. background-size: cover;
  390. position: relative;
  391. }
  392. .el-badge {
  393. &.active {
  394. .el-badge__content--danger {
  395. opacity: 0 !important;
  396. }
  397. }
  398. }
  399. .el-badge__content--danger {
  400. background: #ff4e00 !important;
  401. border: none !important;
  402. }
  403. .el-badge__content.is-fixed {
  404. top: 7px !important;
  405. right: 14px !important;
  406. z-index: 2003 !important;
  407. }
  408. .trans {
  409. animation: circleProgess 3s linear infinite;
  410. }
  411. @keyframes circleProgess {
  412. 0% {
  413. transform: rotateZ(360deg);
  414. }
  415. 25% {
  416. transform: rotateZ(270deg);
  417. }
  418. 50% {
  419. transform: rotateZ(180deg);
  420. }
  421. 75% {
  422. transform: rotateZ(90deg);
  423. }
  424. 100% {
  425. transform: rotateZ(0deg);
  426. }
  427. }
  428. .el-tree-node__content {
  429. height: 40px !important;
  430. }
  431. .el-tree-node__label {
  432. font-size: 14px !important;
  433. }
  434. .el-pagination.is-background .el-pager li:not(.disabled).active {
  435. background-color: #05bb4c !important;
  436. }
  437. .el-table__body tr.hover-row > td.el-table__cell {
  438. background-color: rgba(2, 2, 2) !important;
  439. }
  440. #appBody.light .el-table th.el-table__cell > .cell {
  441. height: 8.2vh !important;
  442. }
  443. .power-benchmarking-page
  444. .top
  445. .top-left
  446. .table.el-table
  447. thead
  448. tr:last-child
  449. th
  450. .cell {
  451. height: 116px !important;
  452. }
  453. * {
  454. -webkit-touch-callout: none; /*系统默认菜单被禁用*/
  455. -webkit-user-select: none; /*webkit浏览器*/
  456. -khtml-user-select: none; /*早期浏览器*/
  457. -moz-user-select: none; /*火狐*/
  458. -ms-user-select: none; /*IE10*/
  459. user-select: none;
  460. }
  461. input {
  462. -webkit-user-select: auto; /*webkit浏览器*/
  463. }
  464. textarea {
  465. -webkit-user-select: auto; /*webkit浏览器*/
  466. }
  467. .gfSelect .el-input__suffix {
  468. display: none !important;
  469. }
  470. body .gfSelect .el-input__inner {
  471. background: rgba(83, 98, 104, 0);
  472. color: #ffffff;
  473. font-size: 16px;
  474. }
  475. .main-body {
  476. .query {
  477. display: flex;
  478. // justify-content: space-between;
  479. &.left {
  480. justify-content: flex-start;
  481. }
  482. .query-items {
  483. flex: 0 0 auto;
  484. display: flex;
  485. .query-item {
  486. flex: 0 0 auto;
  487. display: flex;
  488. margin: 0 1.4815vh;
  489. .el-input {
  490. &.placeholder-left {
  491. input {
  492. &::placeholder {
  493. text-align: left;
  494. }
  495. }
  496. }
  497. }
  498. .placeholder-left {
  499. .el-input {
  500. input {
  501. height: 33px !important;
  502. &::placeholder {
  503. text-align: left;
  504. }
  505. }
  506. }
  507. }
  508. .lable {
  509. flex: 0 0 auto;
  510. margin-right: 1.4815vh;
  511. line-height: 33px;
  512. color: @gray-l;
  513. }
  514. .search-input {
  515. position: relative;
  516. // input {
  517. // box-sizing: border-box;
  518. // flex: 0 0 200px;
  519. // border: 0px solid @darkgray;
  520. // color: @white;
  521. // outline: unset;
  522. // border-radius: 0%;
  523. // padding-right: 40px;
  524. // background: fade(#536268, 20);
  525. // height: 33px;
  526. // line-height: 33px;
  527. // &::placeholder {
  528. // font-size: 12px;
  529. // text-align: right;
  530. // color: @darkgray;
  531. // }
  532. // }
  533. // .unit {
  534. // position: absolute;
  535. // right: 12px;
  536. // top: 6px;
  537. // line-height: 33px;
  538. // margin: auto;
  539. // }
  540. }
  541. }
  542. }
  543. .query-actions {
  544. flex: 0 0 auto;
  545. margin-left: 50px;
  546. display: flex;
  547. justify-content: flex-start;
  548. align-items: center;
  549. .btn {
  550. cursor: pointer;
  551. }
  552. }
  553. }
  554. input {
  555. box-sizing: border-box;
  556. flex: 0 0 200px;
  557. border: 0px solid @darkgray;
  558. color: @white;
  559. outline: unset;
  560. border-radius: 0%;
  561. padding-right: 40px;
  562. background: fade(#536268, 20);
  563. height: 33px;
  564. line-height: 33px;
  565. &::placeholder {
  566. font-size: 12px;
  567. text-align: right;
  568. color: @darkgray;
  569. }
  570. }
  571. input[type="checkbox"] {
  572. position: relative;
  573. display: inline-block;
  574. appearance: none;
  575. width: 14px;
  576. height: 14px;
  577. outline: none;
  578. border: 1px solid @gray;
  579. background-color: #000;
  580. border-radius: 20%;
  581. margin: 0;
  582. padding: 0;
  583. &:checked {
  584. border-color: @green;
  585. background: @green;
  586. }
  587. &::after {
  588. display: inline-block;
  589. content: " ";
  590. position: absolute;
  591. left: 30%;
  592. top: 5%;
  593. width: 3px;
  594. height: 7px;
  595. border-color: #fff;
  596. border-style: solid;
  597. border-width: 0px 2px 2px 0px;
  598. transform: rotate(45deg);
  599. opacity: 0;
  600. }
  601. &:checked::after {
  602. content: "";
  603. opacity: 1;
  604. transition: opacity 0.3s ease-out;
  605. }
  606. }
  607. }
  608. </style>