index.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <div class="home_container">
  3. <!-- 头部 -->
  4. <div class="home_container_header">
  5. <div class="home_container_header-left">
  6. <div class="home_container_header-left_time">
  7. <img class="time_icon" src="../assets/img/risk_info_icon-1.png" alt="" />
  8. <div class="clock">{{ currentTime }}</div>
  9. </div>
  10. <div class="home_container_header-left_tab">
  11. <div class="button-container">
  12. <div v-for="(item, index) in buttons" :key="index" class="parallelogram-button" :class="{ highlight: commonStore.activeIndex === index }" @click="setActive(index, item)">
  13. <div class="text-container" :class="{ 'text-container-highlight': activeIndex === index }">{{ item.title }}</div>
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. <div class="home_container_header-right">
  19. <div class="duoyun"></div>
  20. <div class="right-text">26°C——36°C</div>
  21. </div>
  22. </div>
  23. <!-- 两侧 -->
  24. <div class="home_content_left">
  25. <LeftPage :activeIndex="activeIndex"></LeftPage>
  26. </div>
  27. <div class="home_content_right">
  28. <RightPage :activeIndex="activeIndex"></RightPage>
  29. </div>
  30. <!-- 底部片区图层按钮 -->
  31. <AreaLayerSwitch></AreaLayerSwitch>
  32. </div>
  33. </template>
  34. <script setup>
  35. import AreaLayerSwitch from '../components/AreaLayerSwitch/index'
  36. import LeftPage from './left/index.vue'
  37. import RightPage from './right/index.vue'
  38. import { storeToRefs } from 'pinia'
  39. import { useUserStore } from '../store/user'
  40. import { useCommonStore } from '../store/common.js'
  41. import { ref, reactive, toRefs, onBeforeMount, onMounted, onUnmounted, watch } from 'vue'
  42. let userStore = useUserStore()
  43. let commonStore = useCommonStore()
  44. console.log(userStore, 'useUserStore')
  45. let { name, age } = storeToRefs(userStore)
  46. const currentTime = ref('')
  47. // 更新当前时间的函数
  48. // 更新当前时间的函数
  49. const updateTime = () => {
  50. const now = new Date()
  51. // 格式化为 2025-02-25 10:39:05
  52. const year = now.getFullYear()
  53. const month = String(now.getMonth() + 1).padStart(2, '0') // 月份从 0 开始,需加 1
  54. const day = String(now.getDate()).padStart(2, '0')
  55. const hours = String(now.getHours()).padStart(2, '0')
  56. const minutes = String(now.getMinutes()).padStart(2, '0')
  57. const seconds = String(now.getSeconds()).padStart(2, '0')
  58. currentTime.value = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
  59. }
  60. // 设置定时器每秒更新一次
  61. let timer
  62. onMounted(() => {
  63. updateTime() // 初始化时更新时间
  64. timer = setInterval(updateTime, 1000) // 每秒更新
  65. activeIndex.value=commonStore.getActiveIndex()
  66. })
  67. // 清理定时器
  68. onUnmounted(() => {
  69. clearInterval(timer)
  70. })
  71. let buttons = ref([
  72. { id: 0, title: '报告处置', active: true },
  73. { id: 1, title: '处置进展', active: false }
  74. ])
  75. let activeIndex = ref(0) // 存储当前高亮按钮的索引
  76. function setActive(index, item) {
  77. // 切换高亮按钮,点击时高亮切换
  78. activeIndex.value = index
  79. commonStore.setActiveIndex(index)
  80. }
  81. </script>
  82. <style lang="scss" scoped>
  83. .home_container {
  84. width: 100vw;
  85. height: 100vh;
  86. background: url(../assets/img/1-1综合态势-市级.png) no-repeat;
  87. background-size: 100% 100%;
  88. position: relative;
  89. margin: 0 !important;
  90. overflow: hidden;
  91. }
  92. // 头部样式
  93. .home_container_header {
  94. width: 100%;
  95. height: 165px;
  96. background: url(../assets/img/大标题.png) no-repeat;
  97. background-size: 100% 100%;
  98. position: relative;
  99. .home_container_header-left {
  100. position: absolute;
  101. left: 31px;
  102. top: 30px;
  103. display: flex;
  104. align-items: center;
  105. .home_container_header-left_time {
  106. display: flex;
  107. align-items: center;
  108. margin-right: 143px;
  109. .time_icon {
  110. width: 36px;
  111. height: 36px;
  112. margin-right: 12px;
  113. }
  114. .clock {
  115. font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
  116. font-weight: normal;
  117. font-size: 20px;
  118. color: #ffffff;
  119. line-height: 16px;
  120. text-shadow: 0px 0px 7px #0091ff, 0px 0px 3px #0091ff;
  121. text-align: right;
  122. font-style: normal;
  123. text-transform: none;
  124. }
  125. }
  126. .home_container_header-left_tab {
  127. .button-container {
  128. display: flex;
  129. justify-content: center;
  130. align-items: center;
  131. // gap: 10px;
  132. /* 按钮之间的间隙 */
  133. }
  134. .parallelogram-button {
  135. width: 210px;
  136. height: 50px;
  137. border-radius: 15px;
  138. background: url(../assets/img/page_tab.png) no-repeat;
  139. background-size: 100% 100%;
  140. color: white;
  141. text-align: center;
  142. line-height: 50px;
  143. font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
  144. font-weight: normal;
  145. font-size: 24px;
  146. color: #ffffff;
  147. line-height: 50px;
  148. text-shadow: 0px 0px 7px #0091ff, 0px 0px 3px #0091ff;
  149. text-align: center;
  150. font-style: normal;
  151. text-transform: none;
  152. cursor: pointer;
  153. transform: skew(10deg);
  154. /* 使按钮向左倾斜(调整倾斜度) */
  155. transition: all 0.3s ease;
  156. /* 动画过渡 */
  157. .text-container {
  158. transform: skew(-10deg) !important;
  159. /* 让文字保持竖直 */
  160. text-align: center;
  161. line-height: 50px;
  162. font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
  163. font-weight: normal;
  164. font-size: 24px;
  165. color: #ffffff;
  166. text-shadow: 0px 0px 7px #0091ff, 0px 0px 3px #0091ff;
  167. font-style: normal;
  168. text-transform: none;
  169. }
  170. .text-container-highlight {
  171. color: #ffffff;
  172. text-shadow: 0px 0px 7px #0091ff, 0px 0px 3px #0091ff;
  173. }
  174. }
  175. .parallelogram-button.highlight {
  176. width: 210px;
  177. height: 50px;
  178. /* 高亮时按钮颜色 */
  179. // transform: skew(25deg) scale(1.1);
  180. /* 高亮时略微放大 */
  181. border-radius: 15px;
  182. background: url(../assets/img/page_tab_active.png) no-repeat;
  183. background-size: 100% 100%;
  184. }
  185. .parallelogram-button:hover {
  186. // background-color: #2980b9;
  187. // transform: skew(30deg) scale(1.05);
  188. /* 悬浮时略微放大 */
  189. }
  190. }
  191. }
  192. .home_container_header-right {
  193. position: absolute;
  194. right: 51px;
  195. top: 35px;
  196. display: flex;
  197. align-items: center;
  198. .duoyun{
  199. width: 35px;
  200. height: 35px;
  201. background-image: url('../assets/img/多云.png');
  202. background-size: 100% 100%;
  203. }
  204. .right-text {
  205. width: 113px;
  206. height: 17px;
  207. font-family: Alibaba PuHuiTi;
  208. font-weight: normal;
  209. font-size: 20px;
  210. color: #ffffff;
  211. line-height: 16px;
  212. text-shadow: 0px 0px 7px #0091ff, 0px 0px 3px #0091ff;
  213. text-align: right;
  214. font-style: normal;
  215. text-transform: none;
  216. }
  217. }
  218. }
  219. // 左侧样式
  220. .home_content_left {
  221. position: absolute;
  222. left: 31px;
  223. top: 108px;
  224. width: 1124px;
  225. height: 945px;
  226. // background-color: pink;
  227. }
  228. // 右侧
  229. .home_content_right {
  230. position: absolute;
  231. right: 31px;
  232. top: 108px;
  233. // min-width: 1124px;
  234. height: 945px;
  235. }
  236. </style>