Tab.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. <template>
  2. <div id="tab">
  3. <transition-group name="tab">
  4. <div class="main" key="tabMain">
  5. <div class="main-bg"></div>
  6. <transition-group name="mainTabs" class="main-content" tag="div">
  7. <div class="tab-item" v-for="item, index in tabList.data" :key="item.name" @click="changePage(item.routeName)">
  8. <img class="tab-icon" :src="index === 2 ? item.iconOn : item.icon" alt="">
  9. <span class="tab-label">{{ item.name }}</span>
  10. </div>
  11. </transition-group>
  12. </div>
  13. <div class="sub" v-if="showSub" key="tabSub">
  14. <div class="sub-content">
  15. <span class="options" :class="{ 'highlight': subType === 'hsx' }" @click="handleChangeSub('hsx')">杭申线</span>
  16. <i class="divider"></i>
  17. <!-- <span class="options" :class="{'highlight': subType==='chsx'}" @click="handleChangeSub('chsx')">长湖申线</span> -->
  18. <span style="cursor: not-allowed;" class="options" :class="{ 'highlight': subType === 'chsx' }">长湖申线</span>
  19. </div>
  20. </div>
  21. </transition-group>
  22. <under-water v-if="sxdxShow" />
  23. </div>
  24. </template>
  25. <script>
  26. export default {
  27. name: 'TabSwitch',
  28. }
  29. </script>
  30. <script setup>
  31. import { reactive, watch, nextTick, ref, onBeforeMount, onMounted } from 'vue';
  32. import { useRouter } from 'vue-router'
  33. import { ueCallfullExtent, ueCallFlyToHsx } from '@/utils/UIInteractions'
  34. import UnderWater from './cpns/UnderWater.vue';
  35. import bus from '@/utils/bus'
  36. import { GetUserPrivilege } from "@/utils/user";
  37. const router = reactive(useRouter())
  38. const showSub = ref(false)
  39. const subType = ref('hsx')
  40. function sortTabList() {
  41. showSub.value = router.currentRoute.name === 'AccessMonitor' ? true : false
  42. tabList.data.forEach((i, index) => {
  43. if (i.routeName === router.currentRoute.name) {
  44. let tabTemp = [...tabList.data]
  45. while (index !== 2) {
  46. if (index < 2) {
  47. tabTemp.unshift(tabTemp.pop())
  48. index++
  49. }
  50. if (index > 2) {
  51. tabTemp.push(tabTemp.shift())
  52. index--
  53. }
  54. }
  55. tabList.data = tabTemp
  56. return
  57. }
  58. })
  59. }
  60. onBeforeMount(() => {
  61. sortTabList()
  62. })
  63. watch(router, (n, o) => {
  64. nextTick(() => {
  65. sortTabList()
  66. })
  67. }, { immediate: true })
  68. const tabList = reactive({
  69. data: [
  70. { name: '交通安全', icon: require('@/assets/imgs/navi/icon-jtaq.png'), iconOn: require('@/assets/imgs/navi/icon-jtaq-s.png'), routeName: 'TrafficSafty' },
  71. { name: '航道疏浚', icon: require('@/assets/imgs/navi/icon-hdsj.png'), iconOn: require('@/assets/imgs/navi/icon-hdsj-s.png'), routeName: 'LaneDredge' },
  72. { name: '运营监管', icon: require('@/assets/imgs/navi/icon-yyjg.png'), iconOn: require('@/assets/imgs/navi/icon-yyjg-s.png'), routeName: 'OperationSupervision' },
  73. { name: '水上客运', icon: require('@/assets/imgs/navi/icon-ssky.png'), iconOn: require('@/assets/imgs/navi/icon-ssky-s.png'), routeName: 'WaterTransport' },
  74. { name: '卡口监控', icon: require('@/assets/imgs/navi/icon-kkjk.png'), iconOn: require('@/assets/imgs/navi/icon-kkjk-s.png'), routeName: 'AccessMonitor' },
  75. ]
  76. })
  77. onMounted(() => [
  78. GetUserPrivilege(tabList),
  79. ])
  80. function handleChangeSub(type) {
  81. subType.value = type
  82. }
  83. function changePage(name) {
  84. if (name === "AccessMonitor") {
  85. ueCallFlyToHsx()
  86. } else {
  87. ueCallfullExtent()
  88. }
  89. router.push({
  90. name
  91. })
  92. }
  93. const sxdxShow = ref(false)
  94. bus.on('toggle_sxdx', (param) => {
  95. sxdxShow.value = param
  96. })
  97. </script>
  98. <style lang="scss" scoped>
  99. #tab {
  100. position: absolute;
  101. bottom: 0;
  102. left: 0;
  103. width: 100%;
  104. .main {
  105. position: relative;
  106. width: 100%;
  107. height: 160px;
  108. .main-bg {
  109. position: absolute;
  110. bottom: 0;
  111. left: 0;
  112. width: 100%;
  113. height: 64px;
  114. background: url('@/assets/imgs/navi/bg-main.png') no-repeat;
  115. background-size: 100% 64px;
  116. z-index: 3;
  117. }
  118. .main-content {
  119. position: absolute;
  120. bottom: 26px;
  121. left: 50%;
  122. width: 600px;
  123. height: 120px;
  124. transform: translateX(-50%);
  125. display: flex;
  126. justify-content: space-between;
  127. align-items: center;
  128. z-index: 4;
  129. }
  130. .tab-item {
  131. display: flex;
  132. flex-direction: column;
  133. justify-content: center;
  134. align-items: center;
  135. cursor: pointer;
  136. &.disabed {
  137. cursor: not-allowed;
  138. opacity: 0.5;
  139. }
  140. .tab-icon {
  141. width: 85px;
  142. height: 85px;
  143. }
  144. .tab-label {
  145. font-size: 20px;
  146. font-family: YSBTH;
  147. font-weight: 400;
  148. font-style: italic;
  149. color: #fff;
  150. transform: translateY(-3px);
  151. padding-right: 4px;
  152. }
  153. &:hover .tab-icon {
  154. transform: scale(1.05) translateY(-3px);
  155. }
  156. }
  157. .tab-item:nth-child(1),
  158. .tab-item:nth-child(5) {
  159. .tab-label {
  160. color: #F2FBFF;
  161. }
  162. }
  163. .tab-item:nth-child(2),
  164. .tab-item:nth-child(4) {
  165. transform: translateY(-10px);
  166. }
  167. .tab-item:nth-child(3) {
  168. transform: translateY(-20px);
  169. .tab-icon {
  170. width: 105px;
  171. height: 112px;
  172. }
  173. .tab-label {
  174. color: transparent;
  175. background: linear-gradient(0deg, #FFEFC9 0%, #FFD46F 100%);
  176. -webkit-background-clip: text;
  177. transform: translateY(-16px);
  178. }
  179. }
  180. }
  181. .mainTabs-move,
  182. .mainTabs-enter-active,
  183. .mainTabs-leave-active {
  184. transition: all 0.5s ease;
  185. }
  186. .tab-move,
  187. .tab-enter-active {
  188. transition: all 0.5s ease;
  189. }
  190. .tab-leave-active {
  191. display: none;
  192. }
  193. .tab-enter-from,
  194. .tab-leave-to {
  195. opacity: 0;
  196. transform: translateY(30px);
  197. }
  198. .sub {
  199. position: relative;
  200. width: 100%;
  201. height: 30px;
  202. .sub-content {
  203. position: absolute;
  204. bottom: 5px;
  205. left: 50%;
  206. transform: translateX(-50%);
  207. width: fit-content;
  208. display: flex;
  209. justify-content: center;
  210. align-items: center;
  211. z-index: 4;
  212. .options {
  213. position: relative;
  214. width: 112px;
  215. height: 44px;
  216. box-sizing: border-box;
  217. padding-top: 6px;
  218. font-size: 18px;
  219. font-family: YSBTH;
  220. color: transparent;
  221. background: linear-gradient(0deg, rgba(97, 155, 214, 1) 0%, #FFFFFF 100%);
  222. -webkit-background-clip: text;
  223. cursor: pointer;
  224. z-index: 5;
  225. &::after {
  226. content: '';
  227. position: absolute;
  228. width: 100%;
  229. height: 100%;
  230. top: 0;
  231. left: 0;
  232. background: url('@/assets/imgs/page_kkjk/sub-navi.png') no-repeat;
  233. background-size: 100% 100%;
  234. z-index: 4;
  235. }
  236. &.highlight {
  237. background: linear-gradient(0deg, #D6D660 0%, #FFFFFF 100%);
  238. -webkit-background-clip: text;
  239. &::after {
  240. background: url('@/assets/imgs/page_kkjk/sub-navi-s.png') no-repeat;
  241. background-size: 100% 100%;
  242. }
  243. }
  244. }
  245. .divider {
  246. display: inline-block;
  247. width: 1px;
  248. height: 17px;
  249. margin: 0 60px;
  250. background: #FFFFFF;
  251. opacity: 0.4;
  252. }
  253. }
  254. }
  255. }
  256. </style>