|
@@ -1,33 +1,31 @@
|
|
|
<template>
|
|
|
- <div class="wind-site">
|
|
|
- <div class="page-common-body">
|
|
|
- <div class="page-common-body-router">
|
|
|
- <router-view @getWtid="getWtid" />
|
|
|
- </div>
|
|
|
- <div v-if="!hidden" class="page-common-body-menu">
|
|
|
- <div class="page-common-body-menu-box">
|
|
|
- <div class="page-common-body-menu-border left top"></div>
|
|
|
- <div class="page-common-body-menu-border left bottom"></div>
|
|
|
- <div class="page-common-body-menu-border right top"></div>
|
|
|
- <div class="page-common-body-menu-border right bottom"></div>
|
|
|
- <div
|
|
|
- class="page-common-body-menu-item"
|
|
|
- v-for="(menuData, index) of menuDatas"
|
|
|
- :key="index"
|
|
|
- @click="clickMenu(index)"
|
|
|
- :class="{ active: activeIndex == index }"
|
|
|
- >
|
|
|
- <router-link :to="menuData.path">
|
|
|
- <span
|
|
|
- class="svg-icon"
|
|
|
- :class="
|
|
|
- activeIndex == index ? 'svg-icon-yellow' : 'svg-icon-green'
|
|
|
- "
|
|
|
- >
|
|
|
- <SvgIcon :svgid="menuData.icon"></SvgIcon>
|
|
|
- </span>
|
|
|
- </router-link>
|
|
|
- </div>
|
|
|
+ <div class="page-common-body">
|
|
|
+ <div class="page-common-body-router">
|
|
|
+ <router-view @getWtid="getWtid" />
|
|
|
+ </div>
|
|
|
+ <div v-if="!hidden" class="page-common-body-menu">
|
|
|
+ <div class="page-common-body-menu-box">
|
|
|
+ <div class="page-common-body-menu-border left-top"></div>
|
|
|
+ <div class="page-common-body-menu-border left-bottom"></div>
|
|
|
+ <div class="page-common-body-menu-border right-top"></div>
|
|
|
+ <div class="page-common-body-menu-border right-bottom"></div>
|
|
|
+ <div
|
|
|
+ class="page-common-body-menu-item"
|
|
|
+ v-for="(menuData, index) of menuDatas"
|
|
|
+ :key="index"
|
|
|
+ @click="clickMenu(index)"
|
|
|
+ :class="{ active: activeIndex == index }"
|
|
|
+ >
|
|
|
+ <router-link :to="menuData.path">
|
|
|
+ <span
|
|
|
+ class="svg-icon"
|
|
|
+ :class="
|
|
|
+ activeIndex == index ? 'svg-icon-yellow' : 'svg-icon-green'
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <SvgIcon :svgid="menuData.icon"></SvgIcon>
|
|
|
+ </span>
|
|
|
+ </router-link>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -86,12 +84,12 @@ export default {
|
|
|
|
|
|
methods: {
|
|
|
getWtid(id, from) {
|
|
|
- // this.wtId = id;
|
|
|
- // if (from && from == "wpHealth") {
|
|
|
- // this.menuDatas.forEach((ele) => {
|
|
|
- // ele.path += "/" + this.wpId + "/" + id;
|
|
|
- // });
|
|
|
- // }
|
|
|
+ // this.wtId = id;
|
|
|
+ // if (from && from == "wpHealth") {
|
|
|
+ // this.menuDatas.forEach((ele) => {
|
|
|
+ // ele.path += "/" + this.wpId + "/" + id;
|
|
|
+ // });
|
|
|
+ // }
|
|
|
},
|
|
|
clickMenu: function (index) {
|
|
|
this.activeIndex = index;
|
|
@@ -101,86 +99,87 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-.wind-site {
|
|
|
- .page-common-body {
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- margin-top: 10px;
|
|
|
-
|
|
|
- .page-common-body-router {
|
|
|
- overflow: auto;
|
|
|
- overflow-x: hidden;
|
|
|
- height: calc(100vh - 7.037vh);
|
|
|
- flex: 1 1 auto;
|
|
|
- }
|
|
|
-
|
|
|
- .page-common-body-menu {
|
|
|
- width: 7.407vh;
|
|
|
- padding: 0 1.481vh 1.481vh 1.481vh;
|
|
|
-
|
|
|
- .page-common-body-menu-box {
|
|
|
- border: 0.093vh solid @darkgray;
|
|
|
- background-color: fade(@darkgray, 30%);
|
|
|
- padding: 2.222vh 0.185vh;
|
|
|
- position: relative;
|
|
|
-
|
|
|
- .page-common-body-menu-border {
|
|
|
- position: absolute;
|
|
|
- width: 0.37vh;
|
|
|
- height: 0.37vh;
|
|
|
- background-color: @write;
|
|
|
- border-radius: 50%;
|
|
|
-
|
|
|
- &.left {
|
|
|
- left: -0.185vh;
|
|
|
- }
|
|
|
-
|
|
|
- &.right {
|
|
|
- right: -0.185vh;
|
|
|
- }
|
|
|
-
|
|
|
- &.top {
|
|
|
- top: -0.185vh;
|
|
|
- }
|
|
|
+.page-common-body {
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ padding-top: 10px;
|
|
|
+
|
|
|
+ .page-common-body-router {
|
|
|
+ overflow: auto;
|
|
|
+ overflow-x: hidden;
|
|
|
+ height: calc(100% - 10px);
|
|
|
+ flex: 1 1 auto;
|
|
|
+ }
|
|
|
|
|
|
- &.bottom {
|
|
|
- bottom: -0.185vh;
|
|
|
- }
|
|
|
+ .page-common-body-menu {
|
|
|
+ padding: 0 12px 12px 12px;
|
|
|
+
|
|
|
+ .page-common-body-menu-box {
|
|
|
+ border: 1px solid @darkgray;
|
|
|
+ background-color: fade(@darkgray, 30%);
|
|
|
+ padding: 20px 5px;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ .page-common-body-menu-border {
|
|
|
+ position: absolute;
|
|
|
+ width: 3px;
|
|
|
+ height: 3px;
|
|
|
+ background-color: @write;
|
|
|
+ border-radius: 50%;
|
|
|
+
|
|
|
+ &.left-top {
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
}
|
|
|
|
|
|
- .page-common-body-menu-item {
|
|
|
- border: 0.093vh solid fade(@green, 40%);
|
|
|
- width: 3.889vh;
|
|
|
- height: 3.889vh;
|
|
|
- border-radius: 0.278vh;
|
|
|
- margin-top: 10px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- cursor: pointer;
|
|
|
+ &.left-bottom {
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ }
|
|
|
|
|
|
- a {
|
|
|
- line-height: 0;
|
|
|
- }
|
|
|
+ &.right-top {
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ }
|
|
|
+ &.right-bottom {
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- &:first-child {
|
|
|
- margin-top: 0;
|
|
|
- }
|
|
|
+ .page-common-body-menu-item {
|
|
|
+ border: 1px solid fade(@green, 40%);
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ border-radius: 5px;
|
|
|
+ margin-top: 10px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ a {
|
|
|
+ line-height: 0;
|
|
|
+ }
|
|
|
|
|
|
- &.active {
|
|
|
- border-color: fade(@yellow, 40%);
|
|
|
- position: relative;
|
|
|
+ &:first-child {
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
|
|
|
- &::after {
|
|
|
- content: "";
|
|
|
- width: calc(100% - 0.37vh);
|
|
|
- height: calc(100% - 0.37vh);
|
|
|
- position: absolute;
|
|
|
- border: 0.093vh solid @yellow;
|
|
|
- box-shadow: 0 0 0.37vh @yellow;
|
|
|
- top: 0.093vh;
|
|
|
- left: 0.093vh;
|
|
|
- }
|
|
|
+ &.active {
|
|
|
+ border-color: fade(@yellow, 40%);
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ &::after {
|
|
|
+ content: "";
|
|
|
+ width: calc(100% - 2px);
|
|
|
+ height: calc(100% - 2px);
|
|
|
+ position: absolute;
|
|
|
+ border: 1px solid @yellow;
|
|
|
+ box-shadow: 0 0 2px @yellow;
|
|
|
+ top: 1px;
|
|
|
+ left: 1px;
|
|
|
}
|
|
|
}
|
|
|
}
|