App.vue 14 KB

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