Showing
3 changed files
with
12 additions
and
13 deletions
| ... | @@ -22,7 +22,6 @@ declare module 'vue' { | ... | @@ -22,7 +22,6 @@ declare module 'vue' { |
| 22 | ElRow: typeof import('element-ui/lib/row')['default'] | 22 | ElRow: typeof import('element-ui/lib/row')['default'] |
| 23 | ElTabPane: typeof import('element-ui/lib/tab-pane')['default'] | 23 | ElTabPane: typeof import('element-ui/lib/tab-pane')['default'] |
| 24 | ElTabs: typeof import('element-ui/lib/tabs')['default'] | 24 | ElTabs: typeof import('element-ui/lib/tabs')['default'] |
| 25 | - ElTooltip: typeof import('element-ui/lib/tooltip')['default'] | ||
| 26 | HagerBox: typeof import('./src/components/common/hagerBox.vue')['default'] | 25 | HagerBox: typeof import('./src/components/common/hagerBox.vue')['default'] |
| 27 | HagerCarousel: typeof import('./src/components/hagerCarousel.vue')['default'] | 26 | HagerCarousel: typeof import('./src/components/hagerCarousel.vue')['default'] |
| 28 | HagerFooter: typeof import('./src/components/common/hagerFooter.vue')['default'] | 27 | HagerFooter: typeof import('./src/components/common/hagerFooter.vue')['default'] | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-09-26 13:42:11 | 2 | * @Date: 2024-09-26 13:42:11 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-10-23 17:08:32 | 4 | + * @LastEditTime: 2024-10-23 18:35:02 |
| 5 | * @FilePath: /hager/src/components/common/hagerHeader.vue | 5 | * @FilePath: /hager/src/components/common/hagerHeader.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| ... | @@ -29,17 +29,17 @@ | ... | @@ -29,17 +29,17 @@ |
| 29 | <el-col :sm="8" :md="8" :lg="8" :xl="8"> | 29 | <el-col :sm="8" :md="8" :lg="8" :xl="8"> |
| 30 | <div class="nav-right" style="float: right;"> | 30 | <div class="nav-right" style="float: right;"> |
| 31 | <div @click="goToWeb" class="tooltip"> | 31 | <div @click="goToWeb" class="tooltip"> |
| 32 | - <el-tooltip class="item" effect="dark" content="国际站" placement="bottom"> | 32 | + <!-- <el-tooltip class="item" effect="dark" content="国际站" placement="bottom"> --> |
| 33 | <!-- <i class=el-icon-orange style="font-size: 1.25rem;"></i> --> | 33 | <!-- <i class=el-icon-orange style="font-size: 1.25rem;"></i> --> |
| 34 | - <el-image style="width: 1rem; height: 1rem" src="https://cdn.ipadbiz.cn/hager/icon/%E8%AF%AD%E8%A8%80@2x.png" fit="fit"></el-image> | 34 | + <el-image style="width: 1.25rem; height: 1.25rem" src="https://cdn.ipadbiz.cn/hager/icon/%E8%AF%AD%E8%A8%80@2x.png" fit="fit"></el-image> |
| 35 | - </el-tooltip> | 35 | + <!-- </el-tooltip> --> |
| 36 | </div> | 36 | </div> |
| 37 | <div @click="goToLogin" class="tooltip"> | 37 | <div @click="goToLogin" class="tooltip"> |
| 38 | - <el-tooltip class="item" effect="dark" content="用户登录" placement="bottom"> | 38 | + <!-- <el-tooltip class="item" effect="dark" content="用户登录" placement="bottom"> --> |
| 39 | - <el-image v-if="!is_login" style="width: 1rem; height: 1rem" src="https://cdn.ipadbiz.cn/hager/icon/%E7%99%BB%E9%99%86@2x.png" fit="fit"></el-image> | 39 | + <el-image v-if="!is_login" style="width: 1.25rem; height: 1.25rem" src="https://cdn.ipadbiz.cn/hager/icon/%E7%99%BB%E9%99%86@2x.png" fit="fit"></el-image> |
| 40 | - <el-image v-else style="width: 1rem; height: 1rem" src="https://cdn.ipadbiz.cn/hager/icon/%E5%B7%B2%E7%99%BB%E5%BD%95@2x.png" fit="fit"></el-image> | 40 | + <el-image v-else style="width: 1.25rem; height: 1.25rem" src="https://cdn.ipadbiz.cn/hager/icon/%E5%B7%B2%E7%99%BB%E5%BD%95@2x.png" fit="fit"></el-image> |
| 41 | <!-- <i class=el-icon-user style="font-size: 1.25rem;"></i> --> | 41 | <!-- <i class=el-icon-user style="font-size: 1.25rem;"></i> --> |
| 42 | - </el-tooltip> | 42 | + <!-- </el-tooltip> --> |
| 43 | </div> | 43 | </div> |
| 44 | </div> | 44 | </div> |
| 45 | </el-col> | 45 | </el-col> |
| ... | @@ -318,7 +318,7 @@ export default { | ... | @@ -318,7 +318,7 @@ export default { |
| 318 | this.closeMenu(); | 318 | this.closeMenu(); |
| 319 | }, | 319 | }, |
| 320 | goToWeb () { | 320 | goToWeb () { |
| 321 | - console.warn('暂无跳转'); | 321 | + window.open('https://hager.com/', '_blank') |
| 322 | }, | 322 | }, |
| 323 | goToLogin () { | 323 | goToLogin () { |
| 324 | this.$router.push({ | 324 | this.$router.push({ | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-10-10 10:37:16 | 2 | * @Date: 2024-10-10 10:37:16 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-10-23 16:39:02 | 4 | + * @LastEditTime: 2024-10-23 18:38:24 |
| 5 | * @FilePath: /hager/src/components/hagerMenu.vue | 5 | * @FilePath: /hager/src/components/hagerMenu.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| ... | @@ -26,8 +26,8 @@ | ... | @@ -26,8 +26,8 @@ |
| 26 | @click="toggleMenu(item.id)" | 26 | @click="toggleMenu(item.id)" |
| 27 | :class="['menu-label', activeMenu === item.id ? 'active' : '']" | 27 | :class="['menu-label', activeMenu === item.id ? 'active' : '']" |
| 28 | > | 28 | > |
| 29 | - <div> | 29 | + <div style="display: flex; align-items: center;"> |
| 30 | - <el-image style="width: auto; height: 1rem" :src="item.icon" fit="fit"></el-image> | 30 | + <el-image style="width: auto; height: 1rem;" :src="item.icon" fit="fit"></el-image> |
| 31 | {{ item.category_name }} | 31 | {{ item.category_name }} |
| 32 | </div> | 32 | </div> |
| 33 | <div> | 33 | <div> | ... | ... |
-
Please register or login to post a comment