Commit 7693c0bd authored by 张俊's avatar 张俊

定下推送选择页

parent 3fa995d1
<template>
<div class="yygl_container">
<p class="now_page_title">
我的服务 / 111 /
<span>服务详情</span>
</p>
<div class="select_box">
<p class="box_title">
<span></span>
推荐位管理
</p>
</div>
<div class="selected_box">
<p class="box_title">
<span></span>
已选择列表
</p>
</div>
</div>
</template>
<script>
export default {
props: [],
components: {
},
data() {
return {
};
},
watch: {
},
computed: {
},
created() {
},
mounted() {
},
methods: {
},
};
</script>
<style scoped>
.yygl_container {
height: calc(100vh - 84px);
overflow: hidden;
background-color: #f6f7fb;
padding: 20px;
}
.now_page_title {
margin: 15px 0;
color: #898d9e;
}
.now_page_title span {
color: #242c43;
}
.select_box{
float: left;
width: calc(100% - 400px);
margin-right: 20px;
background-color: #ffffff;
box-shadow: 0px 3px 6px 0px
#f4f7fc;
border-radius: 12px;
}
.selected_box{
float: left;
width: 400px;
background-color: #ffffff;
box-shadow: 0px 3px 6px 0px
#f4f7fc;
border-radius: 12px;
}
.box_title{
height:60px;
line-height: 60px;
border-bottom: 1px solid #e3e5ef;
font-size: 16px;
color: #58617a;
font-weight: 600;
}
.box_title span{
width: 4px;
height: 16px;
background-color: #515fe7;
border-radius: 2px;
display: inline-block;
}
</style>
......@@ -379,6 +379,11 @@ export default new Router({
name: "recommended",
component: () => import("@/pages/message-management/recommended/recommended-list"),
},
{
path: "/message/recommend_selected", // 推荐位管理选择列表
name: "recommend_selected",
component: () => import("@/pages/message-management/recommended/recommened-selected-list"),
},
{
path: "/message/directed_push", // 定向推送列表
name: "directed_push",
......
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