App.vue 15 KB

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