Commit 85640196 authored by 黄奎's avatar 黄奎

新增页面

parent 980a6954
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
<el-table-column prop="name" label="商城名称" width="155"> <el-table-column prop="name" label="商城名称" width="155">
<template slot-scope="scope"> <template slot-scope="scope">
<p style="color:#409EFF;cursor:pointer;text-decoration:underline;" <p style="color:#409EFF;cursor:pointer;text-decoration:underline;"
@click="setMallBaseId(scope.row.MallBaseId,scope.row.MallName),goHomePage()" title="点击进入商城"> @click="setMallBaseId(scope.row),goHomePage()" title="点击进入商城">
{{scope.row.MallName}}</p> {{scope.row.MallName}}</p>
<p>账号:{{scope.row.Account}}</p> <p>账号:{{scope.row.Account}}</p>
<p> <p>
...@@ -617,10 +617,11 @@ ...@@ -617,10 +617,11 @@
}) })
}, },
//点击商品名称设置setMallBaseId //点击商品名称设置setMallBaseId
setMallBaseId(Id, Name) { setMallBaseId(item) {
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
userInfo.MallBaseId = Id; userInfo.MallBaseId = item.MallBaseId;
userInfo.MallName = Name; userInfo.MallName = item.MallName;
userInfo.IsOpenSchool=item.IsOpenSchool;
localStorage.mall_userInfo = JSON.stringify(userInfo); localStorage.mall_userInfo = JSON.stringify(userInfo);
}, },
//修改密码 //修改密码
......
This diff is collapsed.
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="PageName" label="标题"> <el-table-column prop="PageName" label="标题">
</el-table-column> </el-table-column>
<el-table-column label="导航与模板" prop="DetailsList" width="750"> <el-table-column label="导航与模板" prop="DetailsList" width="500">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="templat-list"> <div class="templat-list">
<template v-if="scope.row.DetailsList && scope.row.DetailsList.length>0" <template v-if="scope.row.DetailsList && scope.row.DetailsList.length>0"
...@@ -34,14 +34,21 @@ ...@@ -34,14 +34,21 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="IsHome" label="设为首页" width="80"> <el-table-column prop="IsHome" label="设为首页" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<el-switch v-model="scope.row.IsHome" active-color="#409EFF" :active-value="1" :inactive-value="0" <el-switch v-model="scope.row.IsHome" active-color="#409EFF" :active-value="1" :inactive-value="0"
@change="updateIsHome(scope.row)"> @change="updateIsHome(scope.row)">
</el-switch> </el-switch>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="IsUse" label="禁用/启用" width="85"> <el-table-column prop="IsSchoolHomePage" label="设为校园版首页" width="180" v-if="mall_userInfo.IsOpenSchool==1">
<template slot-scope="scope">
<el-switch v-model="scope.row.IsSchoolHomePage" active-color="#409EFF" :active-value="1"
:inactive-value="0" @change="updateSchoolIsHome(scope.row)">
</el-switch>
</template>
</el-table-column>
<el-table-column prop="IsUse" label="禁用/启用" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<el-switch v-model="scope.row.IsUse" active-color="#409EFF" :active-value="1" :inactive-value="0" <el-switch v-model="scope.row.IsUse" active-color="#409EFF" :active-value="1" :inactive-value="0"
@change="updateIsUse(scope.row)"> @change="updateIsUse(scope.row)">
...@@ -150,13 +157,14 @@ ...@@ -150,13 +157,14 @@
DetailsList: [] DetailsList: []
}, },
total: 0, total: 0,
mall_userInfo: {}
}; };
}, },
components: { components: {
choiceModule choiceModule
}, },
created() { created() {
this.mall_userInfo = JSON.parse(localStorage.mall_userInfo)
}, },
methods: { methods: {
//选择模板 //选择模板
...@@ -195,6 +203,20 @@ ...@@ -195,6 +203,20 @@
} }
}) })
}, },
//更新是否为校园首页
updateSchoolIsHome(item) {
this.apipost("/api/Template/SetMiniprogramPageSchoolIsHome", {
Id: item.Id,
IsSchoolHomePage: item.IsSchoolHomePage
}, res => {
if (res.data.resultCode == 1) {
this.getList();
this.Success(res.data.message);
} else {
this.Info(res.data.message);
}
})
},
handleCurrentChange(val) { handleCurrentChange(val) {
this.msg.pageIndex = val; this.msg.pageIndex = val;
this.getList(); this.getList();
......
...@@ -751,6 +751,12 @@ export default new Router({ ...@@ -751,6 +751,12 @@ export default new Router({
name: 'customPoster', name: 'customPoster',
component: resolve => require(['@/components/StoreDesign/customPoster'], resolve), component: resolve => require(['@/components/StoreDesign/customPoster'], resolve),
}, },
//店铺管理 校园海报
{
path: '/schoolPoster',
name: 'schoolPoster',
component: resolve => require(['@/components/StoreDesign/schoolPoster'], resolve),
},
//营销中心 插件中心 //营销中心 插件中心
{ {
path: '/pluginCenter', path: '/pluginCenter',
......
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