index.vue 6.9 KB

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