|
@@ -7,7 +7,7 @@
|
|
|
>
|
|
|
<div class="innerBox d-flex justify-space-between">
|
|
|
<div>
|
|
|
- <div class="nav-logo">
|
|
|
+ <div class="nav-logo" style="cursor: pointer;" @click="handleLogoClick">
|
|
|
<v-img src="../../assets/logo.png" aspect-ratio="16/9" cover :width="90" style="height: 40px"></v-img>
|
|
|
</div>
|
|
|
<div class="nav-city">
|
|
@@ -115,6 +115,7 @@ const list = ref([
|
|
|
|
|
|
import { useRouter } from 'vue-router'
|
|
|
const router = useRouter()
|
|
|
+const handleLogoClick = () => { router.push({ path: '/home'}) }
|
|
|
|
|
|
const userType = ref(1) // 0企业用户、1个人用户
|
|
|
const show = ref(false)
|