Health4.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <div class="wind-site">
  3. <div class="page-common-body">
  4. <div class="page-common-body-router">
  5. <router-view />
  6. </div>
  7. <div class="page-common-body-menu">
  8. <div class="page-common-body-menu-box">
  9. <div class="page-common-body-menu-border left top"></div>
  10. <div class="page-common-body-menu-border left bottom"></div>
  11. <div class="page-common-body-menu-border right top"></div>
  12. <div class="page-common-body-menu-border right bottom"></div>
  13. <div
  14. class="page-common-body-menu-item"
  15. v-for="(menuData, index) of menuDatas"
  16. :key="index"
  17. @click="clickMenu(index)"
  18. :class="{ active: activeIndex == index }"
  19. >
  20. <router-link :to="menuData.path">
  21. <span
  22. class="svg-icon"
  23. :class="
  24. activeIndex == index ? 'svg-icon-yellow' : 'svg-icon-green'
  25. "
  26. >
  27. <SvgIcon :svgid="menuData.icon"></SvgIcon>
  28. </span>
  29. </router-link>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. </template>
  36. <script>
  37. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  38. export default {
  39. setup() {},
  40. components: { SvgIcon },
  41. data() {
  42. return {
  43. activeIndex: 0,
  44. wpId: "",
  45. wtId: "",
  46. menuDatas: [
  47. {
  48. icon: "svg-q实时监视",
  49. path: "/health/healthDetail/wtHealth",
  50. },
  51. // {
  52. // icon: "svg-q健康",
  53. // path: "/health/health10",
  54. // },
  55. {
  56. icon: "svg-q趋势",
  57. path: "/health/healthDetail/healthTrend",
  58. },
  59. {
  60. icon: "svg-q曲线",
  61. path: "/health/healthManagement/badStateAnalyse",
  62. },
  63. ],
  64. };
  65. },
  66. created() {
  67. this.wtId = this.$route.params.wtId;
  68. this.wpId = this.$route.params.wpId;
  69. this.menuDatas.forEach((ele) => {
  70. ele.path += "/" + this.wpId + "/" + this.wtId;
  71. });
  72. },
  73. methods: {
  74. clickMenu: function (index) {
  75. this.activeIndex = index;
  76. },
  77. },
  78. };
  79. </script>
  80. <style lang="less" scoped>
  81. .wind-site {
  82. .page-common-body {
  83. display: flex;
  84. flex-direction: row;
  85. margin-top: 0.741vh;
  86. .page-common-body-router {
  87. overflow: auto;
  88. overflow-x: hidden;
  89. height: calc(100vh - 7.037vh);
  90. flex: 1 1 auto;
  91. }
  92. .page-common-body-menu {
  93. width: 7.407vh;
  94. padding: 0 1.481vh 1.481vh 1.481vh;
  95. .page-common-body-menu-box {
  96. border: 0.093vh solid @darkgray;
  97. background-color: fade(@darkgray, 30%);
  98. padding: 2.222vh 0.185vh;
  99. position: relative;
  100. .page-common-body-menu-border {
  101. position: absolute;
  102. width: 0.37vh;
  103. height: 0.37vh;
  104. background-color: @write;
  105. border-radius: 50%;
  106. &.left {
  107. left: -0.185vh;
  108. }
  109. &.right {
  110. right: -0.185vh;
  111. }
  112. &.top {
  113. top: -0.185vh;
  114. }
  115. &.bottom {
  116. bottom: -0.185vh;
  117. }
  118. }
  119. .page-common-body-menu-item {
  120. border: 0.093vh solid fade(@green, 40%);
  121. width: 3.889vh;
  122. height: 3.889vh;
  123. border-radius: 0.278vh;
  124. margin-top: 0.741vh;
  125. display: flex;
  126. align-items: center;
  127. justify-content: center;
  128. cursor: pointer;
  129. a {
  130. line-height: 0;
  131. }
  132. &:first-child {
  133. margin-top: 0;
  134. }
  135. &.active {
  136. border-color: fade(@yellow, 40%);
  137. position: relative;
  138. &::after {
  139. content: "";
  140. width: calc(100% - 0.37vh);
  141. height: calc(100% - 0.37vh);
  142. position: absolute;
  143. border: 0.093vh solid @yellow;
  144. box-shadow: 0 0 0.37vh @yellow;
  145. top: 0.093vh;
  146. left: 0.093vh;
  147. }
  148. }
  149. }
  150. }
  151. }
  152. }
  153. }
  154. </style>