|
|
@@ -18,7 +18,13 @@
|
|
|
<div class="head-right">
|
|
|
<div class="info-bos flex-row-start">
|
|
|
<div v-for="(navItem, index) in bottomNavList" :key="index" :style="{ marginRight: index < bottomNavList.length - 1 ? '100px' : '0' }">
|
|
|
- <div class="info-title">{{ navItem.navigationName }}</div>
|
|
|
+ <div
|
|
|
+ class="info-title"
|
|
|
+ :class="{ 'info-title-clickable': navItem.url || navItem.link }"
|
|
|
+ @click="handleNavClick(navItem)"
|
|
|
+ >
|
|
|
+ {{ navItem.navigationName }}
|
|
|
+ </div>
|
|
|
<div
|
|
|
v-for="(link, linkIndex) in navItem.children"
|
|
|
:key="linkIndex"
|
|
|
@@ -186,6 +192,14 @@ onMounted(() => {
|
|
|
font-size: 14px;
|
|
|
color: #101828;
|
|
|
margin-bottom: 20px;
|
|
|
+
|
|
|
+ &.info-title-clickable {
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ color: #e7000b;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.info-text {
|