Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mall.oytour.com
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
黄奎
mall.oytour.com
Commits
faeda797
Commit
faeda797
authored
Sep 07, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
e2a9db0a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
1 deletion
+39
-1
RB_Miniprogram_Template_Extend.cs
.../Extend/MarketingCenter/RB_Miniprogram_Template_Extend.cs
+14
-0
MiniprogramTemplateModule.cs
Mall.Module.MarketingCenter/MiniprogramTemplateModule.cs
+25
-1
No files found.
Mall.Model/Extend/MarketingCenter/RB_Miniprogram_Template_Extend.cs
View file @
faeda797
...
...
@@ -2066,5 +2066,19 @@ namespace Mall.Model.Extend.MarketingCenter
/// </summary>
public
string
fontColor
{
get
;
set
;
}
/// <summary>
/// 字体名称
/// </summary>
public
string
fontName
{
get
;
set
;
}
/// <summary>
/// 字体大小
/// </summary>
public
string
fontSize
{
get
;
set
;
}
/// <summary>
/// 是否加粗
/// </summary>
public
string
isBold
{
get
;
set
;
}
}
}
Mall.Module.MarketingCenter/MiniprogramTemplateModule.cs
View file @
faeda797
...
...
@@ -377,7 +377,31 @@ namespace Mall.Module.MarketingCenter
//快捷导航
case
"quick-nav"
:
item
.
data
=
JsonHelper
.
DeserializeObject
<
quicknavItem
>(
item
.
data
.
ToString
());
break
;
//店铺用户信息
case
"shop-info"
:
item
.
data
=
JsonHelper
.
DeserializeObject
<
shopinfoItem
>(
item
.
data
.
ToString
());
break
;
case
"shop-info"
:
shopinfoItem
shopModel
=
new
shopinfoItem
();
try
{
var
shopInfoData
=
JsonHelper
.
DeserializeObject
<
shopinfoItem
>(
item
.
data
.
ToString
());
if
(
shopInfoData
!=
null
)
{
shopModel
.
headImg
=
shopInfoData
?.
headImg
??
""
;
shopModel
.
headName
=
shopInfoData
?.
headName
??
""
;
shopModel
.
headInfo
=
shopInfoData
?.
headInfo
??
""
;
shopModel
.
backgroundPicUrl
=
shopInfoData
?.
backgroundPicUrl
??
""
;
shopModel
.
backgroundColor
=
shopInfoData
?.
backgroundColor
??
""
;
shopModel
.
bottonImg
=
shopInfoData
?.
bottonImg
??
""
;
shopModel
.
fontColor
=
shopInfoData
?.
fontColor
??
""
;
shopModel
.
fontName
=
shopInfoData
?.
fontName
??
""
;
shopModel
.
fontSize
=
shopInfoData
?.
fontSize
??
"13"
;
shopModel
.
isBold
=
shopInfoData
?.
isBold
??
"false"
;
}
}
catch
{
}
item
.
data
=
shopModel
;
break
;
}
}
...
...
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