| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <template>
- <div class="dock-wrapper">
- <div class="nav-arrow left-arrow" :class="{ 'is-disabled': !canScrollLeft, 'is-active': canScrollLeft }"
- @click="scrollList(-1)">
- <img v-if="canScrollLeft" src="@/assets/main/main-right.png" class="arrow-img left-facing" />
- <img v-else src="@/assets/main/main-left.png" class="arrow-img" />
- </div>
- <div class="dock-list-container" ref="listContainer" @scroll="checkScrollState">
- <div class="dock-list">
- <div v-for="(item, index) in dockItems" :key="index" class="dock-item"
- :class="{ 'is-active': activeIndex === index, [`theme-${item.theme}`]: item.theme}"
- @click="handleSelect(index, item)"
- @mouseenter="hoverIndex = index"
- @mouseleave="hoverIndex = null"
- >
- <div class="item-icon">
- <img v-if="item.imgUrl"
- :src="(activeIndex === index || hoverIndex === index) && item.activeImgUrl ? item.activeImgUrl : item.imgUrl"
- class="custom-icon" />
- <i v-else :class="item.iconClass"></i>
- </div>
- <div class="item-label">{{ item.label }}</div>
- </div>
- </div>
- </div>
- <div class="nav-arrow right-arrow" :class="{ 'is-disabled': !canScrollRight, 'is-active': canScrollRight }"
- @click="scrollList(1)">
- <img v-if="canScrollRight" src="@/assets/main/main-right.png" class="arrow-img" />
- <img v-else src="@/assets/main/main-left.png" class="arrow-img left-facing" />
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'BottomDock',
- data() {
- return {
- activeIndex: 0,
- hoverIndex: null,
- canScrollLeft: false, // 初始默认在最左侧,所以左侧不能滚
- canScrollRight: true, // 初始默认右侧有内容,可以滚
- dockItems: [
- /* ... 你的菜单数据 ... */
- {
- label: '首页',
- imgUrl: require('@/assets/main/main-home.png'),
- activeImgUrl: require('@/assets/main/main-home-hover.png'),
- route: '/home',
- theme: 'blue',
- },
- {
- label: '状态监控',
- imgUrl: require('@/assets/main/main-surve.png'),
- activeImgUrl: require('@/assets/main/main-surve-hover.png'),
- route: '/surve',
- theme: 'blue',
- },
- {
- label: '特勤安保',
- imgUrl: require('@/assets/main/main-security.png'),
- activeImgUrl: require('@/assets/main/main-security-hover.png'),
- route: '/security',
- theme: 'gold',
- },
- {
- label: '干线协调',
- imgUrl: require('@/assets/main/main-coor.png'),
- activeImgUrl: require('@/assets/main/main-coor-hover.png'),
- route: '/coor',
- theme: 'blue',
- },
- {
- label: '数据分析',
- imgUrl: require('@/assets/main/main-watch.png'),
- activeImgUrl: require('@/assets/main/main-watch-hover.png'),
- route: '/watch',
- theme: 'blue',
- },
- {
- label: '系统设置',
- imgUrl: require('@/assets/main/main-setting.png'),
- activeImgUrl: require('@/assets/main/main-setting-hover.png'),
- route: '/setting',
- theme: 'blue',
- },
- // (建议多加几个测试数据,撑爆容器宽度,才能看到滚动和状态切换)
- {
- label: '测试1',
- imgUrl: require('@/assets/main/main-home.png'),
- theme: 'blue',
- },
- {
- label: '测试2',
- imgUrl: require('@/assets/main/main-surve.png'),
- theme: 'blue',
- },
- {
- label: '测试3',
- imgUrl: require('@/assets/main/main-security.png'),
- theme: 'blue',
- },
- ]
- };
- },
- watch: {
- $route() {
- this.updateActiveIndexByRoute();
- }
- },
- created() {
- this.updateActiveIndexByRoute();
- },
- mounted() {
- // 组件挂载后,等 DOM 渲染完毕,立即计算一次初始状态
- this.$nextTick(() => {
- this.checkScrollState();
- // 监听窗口大小变化,防止屏幕拉伸导致容器尺寸变化
- window.addEventListener('resize', this.checkScrollState);
- });
- },
- beforeDestroy() {
- // 销毁时移除监听
- window.removeEventListener('resize', this.checkScrollState);
- },
- methods: {
- updateActiveIndexByRoute() {
- const currentPath = this.$route.path;
- console.log(currentPath)
- // 查找当前路由路径匹配的菜单项索引
- const matchIndex = this.dockItems.findIndex(item => {
- // 精确匹配:item.route === currentPath
- // 模糊匹配(推荐):当前路径包含菜单的路由(解决含有子路由 /monitor/detail 时底部也高亮的问题)
- return item.route && currentPath.startsWith(item.route);
- });
- // 如果找到了对应的菜单,就更新 activeIndex
- if (matchIndex !== -1) {
- this.activeIndex = matchIndex;
- }
- },
- handleSelect(index, item) {
- if (this.activeIndex === index) return;
- this.activeIndex = index;
- // 【新增路由跳转逻辑】
- if (item.route) {
- // 使用 catch 拦截重复点击同一个路由时的 NavigationDuplicated 报错
- this.$router.push(item.route).catch(err => {
- if (err.name !== 'NavigationDuplicated') {
- console.error('路由跳转失败:', err);
- }
- });
- }
- this.$emit('change', item);
- },
- // 【新增核心方法】:检查并更新滚动状态
- checkScrollState() {
- const container = this.$refs.listContainer;
- if (!container) return;
- // 1. 如果 scrollLeft 大于 0,说明不在最左边,左侧按钮可点击 (状态1)
- this.canScrollLeft = container.scrollLeft > 0;
- // 2. 如果 scrollLeft + 可视宽度 < 实际总宽度,说明右侧还没滚到底,右侧按钮可点击 (状态1)
- // 使用 Math.ceil 是为了防止部分高分屏下出现小数像素导致的精度误差
- this.canScrollRight = Math.ceil(container.scrollLeft + container.clientWidth) < container.scrollWidth;
- },
- scrollList(direction) {
- // 如果处于不可滚动状态(状态2),直接 return,不执行滚动
- if (direction === -1 && !this.canScrollLeft) return;
- if (direction === 1 && !this.canScrollRight) return;
- const container = this.$refs.listContainer;
- // 1 个图标宽度 100px + 右侧间距 30px = 130px
- const scrollAmount = 130; // 调整每次滑动的距离
- if (container) {
- container.scrollBy({
- left: direction * scrollAmount,
- behavior: 'smooth'
- });
- // 这里的平滑滚动会自动触发上面绑定的 @scroll 事件,
- // 从而实时调用 checkScrollState 更新按钮状态
- }
- }
- }
- };
- </script>
- <style scoped>
- /* ================= 整体容器布局 (修复垂直排列的核心) ================= */
- .dock-wrapper {
- display: flex !important;
- flex-direction: row !important;
- /* 1. 强制左右水平排列 */
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 160px;
- /* position: relative; */
- position: fixed;
- left: 0;
- z-index: 9999;
-
- /* 🌟 核心修改 1:不用 transform,直接把 bottom 设为负数藏到底部外 */
- bottom: -140px;
- /* 🌟 核心修改 2:过渡动画改为监听 bottom 属性 */
- transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
- background: linear-gradient(to top, rgba(0, 20, 30, 0.8) 0%, rgba(0, 20, 30, 0.01) 100%);
- pointer-events: auto !important;
- }
- /* 🌟 核心修改 3:鼠标悬浮时,bottom 归零,完美升起 */
- .dock-wrapper:hover {
- bottom: 0;
- }
- /* === 顶部的发光提示线(保持不变,加了一个穿透属性防误触) === */
- .dock-wrapper::before {
- content: '';
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 200px;
- height: 3px;
- background: rgba(0, 229, 255, 0.6);
- box-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
- border-radius: 4px;
- transition: opacity 0.3s;
- pointer-events: none; /* 防止这根线挡住鼠标划入的判定 */
- }
- /* 展开的时候让提示线消失 */
- .dock-wrapper:hover::before {
- opacity: 0;
- }
- /* 视窗容器:定宽,超出部分隐藏并允许横向滚动
- 【精算容器宽度】:
- 要想完美不漏边,容器宽度必须等于:(显示个数 * 元素宽度) + ((显示个数 - 1) * 间距)
- 假设你想完美显示 6 个:(6 * 100px) + (5 * 30px) = 750px
- */
- .dock-list-container {
- width: 750px;
- height: 160px;
- overflow-x: auto;
- overflow-y: hidden;
- white-space: nowrap;
- /* 2. 强制内部文本/元素绝对不换行 */
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- .dock-list-container::-webkit-scrollbar {
- display: none;
- }
- /* 真实的菜单列表:尺寸由内容撑开 */
- .dock-list {
- display: flex !important;
- flex-direction: row !important;
- /* 3. 菜单项强制水平排列 */
- flex-wrap: nowrap !important;
- /* 4. 绝对不允许换行 */
- align-items: flex-end;
- /* 底部对齐 */
- height: 100%;
- width: max-content;
- /* 5. 关键:真实宽度由内部项决定,从而完美触发父级滚动 */
- min-width: 100%;
- padding-bottom: 20px;
- gap: 30px;
- /* 图标之间的横向间距 */
- }
- /* ================= 左右控制箭头 ================= */
- /* 容器基础样式 */
- .nav-arrow {
- flex-shrink: 0;
- width: 40px;
- height: 40px;
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 0.3s;
- margin: 0 15px;
- /* 【修改】:去掉之前的底色和边框,因为你现在用整张切图了 */
- background: transparent !important;
- border: none !important;
- }
- .arrow-img {
- width: 100%;
- height: 100%;
- object-fit: contain;
- /* transition: transform 0.2s ease, filter 0.3s ease; */
- }
- /* 强制让左侧的图片掉头指向上一个 */
- .left-facing {
- transform: rotate(180deg);
- }
- /* 状态2:允许切换时的悬浮放大效果 */
- .nav-arrow.is-active {
- cursor: pointer;
- }
- .nav-arrow.is-active:hover .arrow-img {
- transform: scale(1.1);
- filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.8));
- }
- /* 【关键修复】:由于左箭头自带 rotate(180deg),悬浮放大时不能丢掉它的旋转角度,否则它会瞬间掉头! */
- .nav-arrow.left-arrow.is-active:hover .arrow-img.left-facing {
- transform: rotate(180deg) scale(1.1);
- }
- /* 状态1:不允许切换时稍微变暗 */
- .nav-arrow.is-disabled {
- cursor: not-allowed;
- opacity: 0.6;
- }
- /* ================= 单个导航项 ================= */
- .dock-item {
- flex-shrink: 0;
- /* 7. 关键:禁止菜单项自身被挤压 */
- position: relative;
- display: flex;
- flex-direction: column;
- /* 菜单项内部(图标+文字)是上下垂直排布的 */
- align-items: center;
- justify-content: flex-end;
- cursor: pointer;
- width: 100px;
- height: 90px;
- transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
- }
- /* --- 图标部分 --- */
- .item-icon {
- font-size: 32px;
- color: #a0cfff;
- z-index: 3;
- margin-bottom: 5px;
- transition: all 0.3s;
- }
- /* --- 文字部分 --- */
- .item-label {
- color: #c0c4cc;
- font-size: 14px;
- text-align: center;
- transition: all 0.3s;
- letter-spacing: 1px;
- }
- /* ================= 交互状态:悬浮与选中 ================= */
- .dock-item:hover,
- .dock-item.is-active {
- transform: translateY(-15px) scale(1.15);
- }
- .dock-item:hover .item-icon,
- .dock-item.is-active .item-icon {
- color: #ffffff;
- text-shadow: 0 0 15px #00e5ff;
- }
- .dock-item:hover .item-label,
- .dock-item.is-active .item-label {
- color: #ffffff;
- font-weight: bold;
- text-shadow: 0 0 8px #00e5ff;
- }
- .dock-item:hover .top-solid,
- .dock-item.is-active .top-solid {
- background: linear-gradient(135deg, rgba(0, 229, 255, 0.9), rgba(0, 115, 255, 0.9));
- box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
- }
- .dock-item.theme-gold.is-active .item-icon {
- color: #ffd700;
- text-shadow: 0 0 15px #ffaa00;
- }
- .dock-item.theme-gold.is-active .item-label {
- color: #ffd700;
- text-shadow: 0 0 8px #ffaa00;
- }
- /* --- 图标部分 --- */
- .item-icon {
- z-index: 3;
- margin-bottom: 5px;
- /* 确保图片也能有悬浮时的丝滑过渡 */
- transition: transform 0.3s ease, filter 0.3s ease;
- }
- /* 专门针对图片的样式 */
- .custom-icon {
- width: 88px;
- /* 根据你切图的实际大小调整 */
- height: 64px;
- object-fit: contain;
- /* 保证图片不变形 */
- }
- /* 悬浮时,如果想让图片也发光,可以使用 CSS 的 drop-shadow 滤镜 */
- .dock-item:hover .custom-icon,
- .dock-item.is-active .custom-icon {
- filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.8));
- }
- </style>
|