Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
Overview
Overview
Details
Activity
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
base_platform_enterprise
gic-platform-enterprise
Commits
ff2671fa
Commit
ff2671fa
authored
May 11, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面装修调整:页面背景颜色字段改为字符串
parent
75772f04
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletions
+15
-1
AppletCustomPageApiServiceImpl.java
...se/service/outer/impl/AppletCustomPageApiServiceImpl.java
+1
-1
AppletPageDetailVO.java
...in/java/com/gic/enterprise/web/vo/AppletPageDetailVO.java
+14
-0
No files found.
gic-platform-enterprise-service/src/main/java/com/gic/enterprise/service/outer/impl/AppletCustomPageApiServiceImpl.java
View file @
ff2671fa
...
...
@@ -94,7 +94,7 @@ public class AppletCustomPageApiServiceImpl implements AppletCustomPageApiServic
String
backgroundColor
=
jsonObject
.
getString
(
"backgroundColor"
);
if
(
AppletPageTypeEnum
.
hasBackgroundColor
(
pageType
))
{
if
(
backgroundColor
==
null
)
{
backgroundColor
=
"#
A9A9A9
"
;
backgroundColor
=
"#
f6f6f6
"
;
}
}
else
{
//其他页面默认设置null
...
...
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/vo/AppletPageDetailVO.java
View file @
ff2671fa
...
...
@@ -26,6 +26,11 @@ public class AppletPageDetailVO implements Serializable{
private
Integer
entryCondition
;
/**
* 背景颜色 灰色 白色 ,默认灰色(会员中心页面、积分服务页面、自定义页面、商城装首页 有该设置)
*/
private
String
backgroundColor
;
/**
* 配置json
*/
private
String
setting
;
...
...
@@ -81,4 +86,13 @@ public class AppletPageDetailVO implements Serializable{
public
void
setComponentStr
(
String
componentStr
)
{
this
.
componentStr
=
componentStr
;
}
public
String
getBackgroundColor
()
{
return
backgroundColor
;
}
public
AppletPageDetailVO
setBackgroundColor
(
String
backgroundColor
)
{
this
.
backgroundColor
=
backgroundColor
;
return
this
;
}
}
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