Commit 6aed2285 authored by Z's avatar Z

Z: Dot: 隐藏下方两个菜单项;创建顾客画像与好物推荐两个占位页面。

parent 24235ac6
...@@ -127,6 +127,16 @@ const routes = [ ...@@ -127,6 +127,16 @@ const routes = [
name: 'qrCode', name: 'qrCode',
component: () => import('@/views/qrCode/index') component: () => import('@/views/qrCode/index')
}, },
{
path: '/manInfo',
name: 'ManInfo',
component: () => import('@/views/sideNav/manInfo/index')
},
{
path: '/goodPost',
name: 'GoodPost',
component: () => import('@/views/sideNav/goodPost/index')
},
// { // {
// path: '/about', // path: '/about',
// name: 'about', // name: 'about',
......
...@@ -35,10 +35,10 @@ ...@@ -35,10 +35,10 @@
>{{zcache.userInfoResNew}}</div> --> >{{zcache.userInfoResNew}}</div> -->
</div> </div>
<div class="menus"> <!-- <div class="menus">
<div class="menu" @click="buttonMainMarketingClick">精准营销</div> <div class="menu" @click="buttonMainMarketingClick">精准营销</div>
<div class="menu activeMenu" @click="buttonSingleMarketingClick">一对一营销侧边栏</div> <div class="menu activeMenu" @click="buttonSingleMarketingClick">一对一营销侧边栏</div>
</div> </div> -->
</div> </div>
</template> </template>
...@@ -67,7 +67,7 @@ export default { ...@@ -67,7 +67,7 @@ export default {
name: "顾客画像", name: "顾客画像",
dsc: dsc:
"亿百分会员画像,通过一方消费者数据结合三方数据为营业员展示顾客特点", "亿百分会员画像,通过一方消费者数据结合三方数据为营业员展示顾客特点",
redirect: "Discount", redirect: "ManInfo",
logoUrl: "/mainSale/1.png" logoUrl: "/mainSale/1.png"
}, },
{ {
...@@ -81,7 +81,7 @@ export default { ...@@ -81,7 +81,7 @@ export default {
name: "爆品推送", name: "爆品推送",
dsc: dsc:
"亿百分会员画像,通过一方消费者数据结合三方数据为营业员展示顾客特点", "亿百分会员画像,通过一方消费者数据结合三方数据为营业员展示顾客特点",
redirect: "Discount", redirect: "GoodPost",
logoUrl: "/mainSale/3.png" logoUrl: "/mainSale/3.png"
} }
] ]
......
...@@ -75,10 +75,10 @@ ...@@ -75,10 +75,10 @@
</div> </div>
</div> </div>
</div> </div>
<div class="menus"> <!-- <div class="menus">
<div class="menu" @click="buttonMainMarketingClick">精准营销</div> <div class="menu" @click="buttonMainMarketingClick">精准营销</div>
<div class="menu activeMenu" @click="buttonSingleMarketingClick">一对一营销侧边栏</div> <div class="menu activeMenu" @click="buttonSingleMarketingClick">一对一营销侧边栏</div>
</div> </div> -->
</div> </div>
</template> </template>
......
<template>
<div class="main" style="display: flex;flex-direction: column;justify-content: flex-start;font-size: 14px;">
<div>建设中...</div>
</div>
</template>
<script>
import Vue from "vue";
const zlog = console.log.bind(console);
export default {
name: "goodPostIndex",
data() {
return {
};
},
created() {
},
mounted() {
},
methods: {
}
};
</script>
<style scoped>
.main {
background-color: white;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: start;
}
</style>
<template>
<div class="main" style="display: flex;flex-direction: column;justify-content: flex-start;font-size: 14px;">
<div>建设中...</div>
</div>
</template>
<script>
import Vue from "vue";
const zlog = console.log.bind(console);
export default {
name: "manInfoIndex",
data() {
return {
};
},
created() {
},
mounted() {
},
methods: {
}
};
</script>
<style scoped>
.main {
background-color: white;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: start;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment