Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄媛媛
ElectricitySheep
Commits
85640196
Commit
85640196
authored
Sep 21, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
980a6954
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1023 additions
and
8 deletions
+1023
-8
Index.vue
src/components/Index.vue
+5
-4
schoolPoster.vue
src/components/StoreDesign/schoolPoster.vue
+986
-0
CustomPage.vue
src/components/sallCenter/CustomPage.vue
+26
-4
index.js
src/router/index.js
+6
-0
No files found.
src/components/Index.vue
View file @
85640196
...
@@ -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
);
},
},
//修改密码
//修改密码
...
...
src/components/StoreDesign/schoolPoster.vue
0 → 100644
View file @
85640196
This diff is collapsed.
Click to expand it.
src/components/sallCenter/CustomPage.vue
View file @
85640196
...
@@ -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=
"
75
0"
>
<el-table-column
label=
"导航与模板"
prop=
"DetailsList"
width=
"
50
0"
>
<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=
"
8
0"
>
<el-table-column
prop=
"IsHome"
label=
"设为首页"
width=
"
15
0"
>
<
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
();
...
...
src/router/index.js
View file @
85640196
...
@@ -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'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment