feat: 页脚添加商户隐私协议入口,修改路由命名大驼峰
This commit is contained in:
parent
8b682bf546
commit
b40158b255
@ -39,7 +39,7 @@ const routes=[
|
||||
},
|
||||
{
|
||||
path:'/businessAgreementPrivacy',
|
||||
name:'businessAgreementPrivacy',
|
||||
name:'AusinessAgreementPrivacy',
|
||||
component:()=>import('@/views/business/agreement/privacy.vue'),
|
||||
meta:{
|
||||
isFullpage: true
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
<p>关于</p>
|
||||
<ul>
|
||||
<li v-for="a in aboutList" :key="a.id">
|
||||
<router-link :to="{ name: 'about' }">{{ a.title }}</router-link>
|
||||
<router-link :to="{ name: a.name }">{{ a.title }}</router-link>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@ -46,8 +46,9 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
let aboutList = [
|
||||
{ id: 1, title: "关于我们" },
|
||||
{ id: 2, title: "加入我们" }
|
||||
{ id: 1, title: "关于我们", name: 'about' },
|
||||
{ id: 2, title: "加入我们" , name: 'about' },
|
||||
{ id: 3, title: "商户入驻隐私协议" , name: 'AusinessAgreementPrivacy' }
|
||||
];
|
||||
|
||||
let contactList = [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user