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
7cac9668
Commit
7cac9668
authored
Sep 24, 2020
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导航ext过滤关闭tabbar
parent
80dd6e39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
CustomGuideApiServiceImpl.java
...erprise/service/outer/impl/CustomGuideApiServiceImpl.java
+1
-1
CustomGuideController.java
.../gic/enterprise/web/controller/CustomGuideController.java
+3
-3
No files found.
gic-platform-enterprise-service/src/main/java/com/gic/enterprise/service/outer/impl/CustomGuideApiServiceImpl.java
View file @
7cac9668
...
...
@@ -156,7 +156,7 @@ public class CustomGuideApiServiceImpl implements CustomGuideApiService {
guideSize
++;
}
}
if
(
pathSet
.
size
()
!=
guide
List
.
size
()
)
{
if
(
pathSet
.
size
()
!=
guide
Size
)
{
return
ServiceResponse
.
failure
(
ErrorCode
.
PARAMETER_ERROR
.
getCode
(),
"存在相同的路径"
);
}
Map
<
String
,
Object
>
tabBar
=
new
HashMap
<
String
,
Object
>();
...
...
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/controller/CustomGuideController.java
View file @
7cac9668
...
...
@@ -136,7 +136,8 @@ public class CustomGuideController {
}
else
if
(
guideDTO
.
getCustomLinkType
().
equals
(
linkType
)){
//类型为其他
List
<
String
>
listCustomPage
=
Arrays
.
asList
(
"pages/customView/customView1"
,
"pages/customView/customView2"
,
"pages/customView/customView3"
,
"pages/customView/customView4"
,
"pages/customView/customView5"
);
for
(
String
path
:
listCustomPage
){
guideDTO
.
setCustomPage
(
"pages/customView/customView"
+
(
guideDTO
.
getSort
().
intValue
()+
1
));
/**for(String path : listCustomPage){
boolean exist = false;
for(CustomGuideDTO dto : list){
if(path.equals(dto.getCustomPage())){
...
...
@@ -144,9 +145,8 @@ public class CustomGuideController {
}
}
if(!exist){
guideDTO
.
setCustomPage
(
path
);
}
}
}
*/
}
else
{
//类型选择为1-6
for
(
GuideTypeDTO
guideTypeDTO
:
guideTypeDTOList
){
if
(
guideDTO
.
getCustomLinkType
().
equals
(
guideTypeDTO
.
getGuideType
())){
...
...
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