App.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. <template>
  2. <div v-if="!showSisView && isLogined" class="main">
  3. <div class="header-body" v-if="hideHeard === '0'">
  4. <div class="header-title" @click="handleClickJump()">
  5. <!-- <img v-if="$store.state.themeName === 'dark'" src="./assets/projectLogo.png" alt="" />
  6. <img v-if="$store.state.themeName === 'light'" src="./assets/light-projectLogo.png" alt="" /> -->
  7. <span
  8. :style="
  9. $store.state.themeName === 'dark'
  10. ? 'color:#fff; font-size:18px;font-family: SimHei'
  11. : 'color:#000'
  12. "
  13. >
  14. >>发电场站生产实时运营管理平台</span
  15. >
  16. </div>
  17. <div class="header-menu-body">
  18. <Header @onMenuClick="HeaderMenuClick" />
  19. </div>
  20. </div>
  21. <div
  22. class="menu-body"
  23. :class="{ hover: isShowMenu }"
  24. @mouseenter="showMenu"
  25. @mouseleave="hideMenu"
  26. v-show="$store.state.themeName === 'dark'"
  27. v-if="hideMenus === '0'"
  28. >
  29. <Menu :root="root" />
  30. </div>
  31. <div>
  32. <el-menu
  33. class="lightMenu"
  34. :class="$store.state.themeName === 'light' ? 'show' : 'hidden'"
  35. :collapse="true"
  36. text-color="#ffffff"
  37. active-text-color="#6262a2"
  38. background-color="#36348e"
  39. @select="selectMenu"
  40. v-if="hideMenus === '0'"
  41. >
  42. <el-sub-menu
  43. :index="index"
  44. :title="item.text"
  45. v-for="(item, index) in menuData"
  46. :key="index"
  47. >
  48. <template #title>
  49. <router-link :to="item.path">
  50. <el-icon>
  51. <SvgIcon :svgid="item.icon" />
  52. </el-icon>
  53. </router-link>
  54. </template>
  55. <el-menu-item-group
  56. v-for="(menu, idx) in item.children"
  57. :index="idx"
  58. :key="idx"
  59. >
  60. <router-link :to="menu.path">
  61. <el-menu-item :index="index + '-' + idx">{{
  62. menu.text
  63. }}</el-menu-item>
  64. </router-link>
  65. </el-menu-item-group>
  66. </el-sub-menu>
  67. </el-menu>
  68. </div>
  69. <div
  70. class="main-body"
  71. :style="
  72. $store.state.themeName === 'light' && hideMenus === '0'
  73. ? 'margin-left: 75px; max-width : calc(100vw - 54px - 25px);'
  74. : ''
  75. "
  76. >
  77. <router-view />
  78. </div>
  79. </div>
  80. <login-page v-if="!showSisView && !isLogined" @onLogin="login" />
  81. <div v-else-if="!isLogined" class="login">
  82. <login-page />
  83. </div>
  84. <!-- <login-page v-if="!showSisView && !isLogined" @onLogin="login" /> -->
  85. <!-- <div v-else-if="token == ''">
  86. {{token}}
  87. <login-page @onLogin="login" />
  88. </div> -->
  89. <sisView v-else-if="showSisView" />
  90. </template>
  91. <script>
  92. // 导入header.vue文件
  93. import Menu from "@/views/layout/Menu.vue";
  94. import Header from "@/views/layout/Header.vue";
  95. import LoginPage from "./views/layout/login-page.vue";
  96. import sisView from "./views/sisView/index.vue";
  97. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  98. import $ from "jquery";
  99. export default {
  100. components: {
  101. Menu,
  102. Header,
  103. LoginPage,
  104. sisView,
  105. SvgIcon,
  106. },
  107. data() {
  108. return {
  109. isShowMenu: false,
  110. // 当前子系统
  111. root: "",
  112. isLogined: true,
  113. showSisView: false,
  114. memuCloseTimeout: null,
  115. menuData: [],
  116. hideMenus: "0",
  117. hideHeard: "0",
  118. };
  119. },
  120. created() {
  121. let that = this;
  122. const themeName = that.$store.state.themeName;
  123. $("#appBody").attr(
  124. "class",
  125. themeName === "dark" || themeName === "light" ? themeName : "dark"
  126. );
  127. // that.$nextTick(() => {
  128. // that.API.requestData({
  129. // isMust: false, // 请求是否携带 token ,默认为 true ,可缺省
  130. // method: "POST", // 请求方式,默认为 GET ,可缺省
  131. // subUrl: "admin/loginvue", // 请求接口地址,必传项
  132. // data: {
  133. // username: "admin",
  134. // password: "admin",
  135. // },
  136. // success(res) {
  137. // localStorage.setItem("authToken", res.data.authToken);
  138. // localStorage.setItem("username", res.data.user.laborName);
  139. // that.API.requestData({
  140. // method: "POST", // 请求方式,默认为 GET ,可缺省
  141. // subUrl: "admin/usermenu", // 请求接口地址,必传项
  142. // success() {
  143. // // that.BASE.showMsg({
  144. // // msg: "登陆成功",
  145. // // type: "success",
  146. // // });
  147. // // that.$router.push('/'); // 跳转到首页
  148. // },
  149. // });
  150. // },
  151. // });
  152. // });
  153. },
  154. methods: {
  155. // 切换子系统事件
  156. HeaderMenuClick(data) {
  157. this.root = data.id;
  158. },
  159. showMenu() {
  160. this.isShowMenu = true;
  161. this.memuCloseTimeout && clearTimeout(this.memuCloseTimeout);
  162. },
  163. hideMenu() {
  164. const that = this;
  165. this.memuCloseTimeout = setTimeout(function () {
  166. that.isShowMenu = false;
  167. }, 500);
  168. },
  169. login(params) {
  170. if (params.username && params.password) this.isLogined = true;
  171. },
  172. selectMenu(menuIndex) {
  173. this.menuIndex = menuIndex;
  174. },
  175. // clearBackground() {
  176. // return;
  177. // let body = $("body.light");
  178. // if (!body) body = $("body.dark");
  179. // body.css({
  180. // // background: "transparent",
  181. // background: "#fff",
  182. // });
  183. // body.find("#app").css({
  184. // // background: "transparent",
  185. // background: "#fff",
  186. // });
  187. // },
  188. },
  189. watch: {
  190. $route(res) {
  191. this.showSisView = res.fullPath === "/sisView";
  192. this.hideHeard = res.query.hideheard || "0";
  193. this.hideMenus = res.query.hidemenus || "0";
  194. if (res.query.theme) {
  195. const theme = res.query.theme === "dark" ? "dark" : "light";
  196. this.$store.dispatch("changeTheme", theme);
  197. $("#appBody").attr("class", theme);
  198. }
  199. if (res.query.fn) {
  200. this[res.query.fn] && this[res.query.fn]();
  201. }
  202. let ActiveModule = null;
  203. this.menuData.forEach((pEle) => {
  204. if (pEle.path === res.fullPath) {
  205. ActiveModule = pEle;
  206. }
  207. pEle?.children?.forEach((cEle) => {
  208. if (cEle.path === res.fullPath) {
  209. ActiveModule = cEle;
  210. }
  211. });
  212. });
  213. if (ActiveModule) {
  214. this.$store.dispatch("changeModuleName", ActiveModule.text);
  215. }
  216. },
  217. "$store.state.menuData"(res) {
  218. this.menuData = res;
  219. },
  220. "$store.state.moudleName"(msg) {
  221. if (window.__MODE__.showModuleName && msg) {
  222. this.BASE.showMsg({
  223. type: this.$store.state.themeName === "dark" ? "success" : "warning",
  224. showClose: true,
  225. msg,
  226. });
  227. }
  228. },
  229. },
  230. };
  231. </script>
  232. <style lang="less">
  233. @import "./assets/styles/main.less";
  234. * {
  235. box-sizing: border-box;
  236. &::-webkit-scrollbar {
  237. width: 6px;
  238. height: 6px;
  239. }
  240. &::-webkit-scrollbar-track-piece {
  241. background-color: rgba(255, 255, 255, 0.05);
  242. border-radius: 4px;
  243. }
  244. &::-webkit-scrollbar-thumb {
  245. background-color: fade(@gray, 75);
  246. border-radius: 4px;
  247. outline: none;
  248. outline-offset: 0px;
  249. border: none;
  250. }
  251. }
  252. body {
  253. margin: 0;
  254. background: #fff;
  255. color: #fff;
  256. // background-image: url("./assets/background.png");
  257. background: rgb(4, 12, 11);
  258. background-size: cover;
  259. font-size: @fontsize;
  260. font-family: @defalut-font-family;
  261. }
  262. @menuWidth: 5.37vh;
  263. @headerHeight: 59px;
  264. .main {
  265. width: 100vw;
  266. height: 100%;
  267. display: flex;
  268. flex-wrap: wrap;
  269. overflow: hidden;
  270. .header-body {
  271. z-index: 2;
  272. // background: radial-gradient(closest-corner at 22% 40%, #2d5a47, #040d0a, #040d0a);
  273. // flex: 0 0 100%;
  274. width: 100%;
  275. display: flex;
  276. flex-direction: row;
  277. height: @headerHeight;
  278. border-bottom: 1px solid #142b29;
  279. .header-title {
  280. padding-left: 20px;
  281. margin: auto;
  282. color: #fff;
  283. }
  284. .header-menu-body {
  285. flex-grow: 1;
  286. }
  287. }
  288. .menu-body {
  289. position: absolute;
  290. flex: 0 0 @menuWidth;
  291. width: @menuWidth;
  292. height: calc(100vh - @headerHeight);
  293. // height: calc(100vh - 59px);
  294. top: @headerHeight;
  295. // top: 59px;
  296. background-color: fade(#192a26, 75%);
  297. z-index: 8;
  298. opacity: 0;
  299. transition: opacity 0.2s;
  300. transition-timing-function: ease-in;
  301. // transform: translate(-@menuWidth);
  302. &:hover,
  303. &.hover {
  304. opacity: 1;
  305. transition: opacity 0.2s;
  306. transition-timing-function: ease-out;
  307. transform: translate(0);
  308. }
  309. }
  310. .main-body {
  311. flex: 0 0 calc(100vw);
  312. max-width: calc(100vw);
  313. height: calc(100vh - @headerHeight);
  314. // padding: 1.481vh;
  315. // transition: flex 0.1s, margin-left 0.1s;
  316. // transition-timing-function: ease-in-out;
  317. // &.show-menu {
  318. // flex: 0 0 calc(100vw - @menuWidth);
  319. // margin-left: @menuWidth;
  320. // transition: flex 0.1s, margin-left 0.1s;
  321. // transition-timing-function: ease-in-out;
  322. // }
  323. }
  324. .el-table__body tr.current-row > td {
  325. color: #fff;
  326. background: rgba(66, 66, 66, 0.66) !important;
  327. }
  328. .el-transfer-panel {
  329. width: 450px !important;
  330. height: 73vh;
  331. background-color: #111d1c !important;
  332. border: 1px solid #999999 !important;
  333. .el-transfer-panel__body {
  334. height: 100% !important;
  335. .el-transfer-panel__list {
  336. height: 100% !important;
  337. }
  338. }
  339. }
  340. .el-transfer-panel .el-transfer-panel__header {
  341. background-color: #111d1c !important;
  342. color: #05bb4c !important;
  343. .el-checkbox .el-checkbox__label {
  344. color: #05bb4c !important;
  345. }
  346. }
  347. .el-button--primary.is-disabled,
  348. .el-button--primary.is-disabled:active,
  349. .el-button--primary.is-disabled:focus,
  350. .el-button--primary.is-disabled:hover {
  351. background-color: #05bb4c;
  352. border-color: #05bb4c;
  353. }
  354. }
  355. .el-tree-node__content {
  356. height: 40px !important;
  357. }
  358. .el-tree-node__label {
  359. font-size: 14px !important;
  360. }
  361. .el-pagination.is-background .el-pager li:not(.disabled).active {
  362. background-color: #05bb4c !important;
  363. }
  364. .el-table__body tr.hover-row > td.el-table__cell {
  365. background-color: rgba(2, 2, 2) !important;
  366. }
  367. #appBody.light .el-table th.el-table__cell > .cell {
  368. height: 8.2vh !important;
  369. }
  370. .power-benchmarking-page
  371. .top
  372. .top-left
  373. .table.el-table
  374. thead
  375. tr:last-child
  376. th
  377. .cell {
  378. height: 116px !important;
  379. }
  380. * {
  381. -webkit-touch-callout: none; /*系统默认菜单被禁用*/
  382. -webkit-user-select: none; /*webkit浏览器*/
  383. -khtml-user-select: none; /*早期浏览器*/
  384. -moz-user-select: none; /*火狐*/
  385. -ms-user-select: none; /*IE10*/
  386. user-select: none;
  387. }
  388. input {
  389. -webkit-user-select: auto; /*webkit浏览器*/
  390. }
  391. textarea {
  392. -webkit-user-select: auto; /*webkit浏览器*/
  393. }
  394. .gfSelect .el-input__suffix {
  395. display: none !important;
  396. }
  397. body .gfSelect .el-input__inner {
  398. background: rgba(83, 98, 104, 0);
  399. color: #ffffff;
  400. font-size: 16px;
  401. }
  402. </style>