c5645636 by simon

默认提交

1 parent e2d96b10
......@@ -4,7 +4,7 @@
<van-tabbar route v-model="active" @change="onTabbarChange()">
<van-tabbar-item to="/" icon="wap-home-o">首页</van-tabbar-item>
<van-tabbar-item icon="cluster-o">分类</van-tabbar-item>
<van-tabbar-item icon="balance-list-o">订单</van-tabbar-item>
<!-- <van-tabbar-item icon="balance-list-o">订单</van-tabbar-item> -->
<van-tabbar-item to="/favorite" icon="manager-o">我的</van-tabbar-item>
</van-tabbar>
</div>
......@@ -23,7 +23,7 @@ export default {
},
methods: {
onTabbarChange() {
if (this.active != 0 && this.active != 3) {
if (this.active != 0 && this.active != 2) {
Toast("该场景暂未开放,敬请期待");
}
}
......
......@@ -32,7 +32,7 @@
&-item {
@extend .fcc;
@extend .bb;
padding: 0 14px;
padding: 0 20px;
text-align: center;
margin: 0 22px;
color: #ffffff;
......
......@@ -39,7 +39,6 @@ export default {
}
})
}
},
// 请求产品详情
queryProductDetail() {
......
......@@ -9,7 +9,7 @@ const routes = [{
name: 'index',
component: Index,
meta: {
title: '首页'
title: ''
}
},
{
......@@ -41,7 +41,7 @@ const routes = [{
name: 'demo',
component: () => import('./pages/demo/demo.vue'),
meta: {
title: '模板'
title: ''
}
},
{
......@@ -49,7 +49,7 @@ const routes = [{
name: 'about',
component: () => import('./pages/About.vue'),
meta: {
title: '关于'
title: ''
}
}
]
......