App.vue 15 KB

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