Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
slm-bi
Project
Project
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
林锐标
slm-bi
Commits
3c103baf
Commit
3c103baf
authored
Apr 27, 2021
by
梁光意
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复点击节点查询显示仪表盘配置接口
parent
c4ae196e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
InstrumentPanelTreeController.java
...c/slm/slmbi/controller/InstrumentPanelTreeController.java
+2
-2
InstrumentPanelConfigServiceImpl.java
.../slmbi/service/impl/InstrumentPanelConfigServiceImpl.java
+1
-1
No files found.
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelTreeController.java
View file @
3c103baf
...
...
@@ -81,8 +81,8 @@ public class InstrumentPanelTreeController extends BaseRestController {
required
=
true
,
dataTypeClass
=
String
.
class
),
@ApiImplicitParam
(
name
=
"panelId"
,
value
=
"仪表板id"
,
required
=
true
,
dataTypeClass
=
String
.
class
)})
public
R
<
InstrumentPanelConfigVo
>
childrenPanel
(
@PathVariable
String
appId
,
@RequestParam
(
"
nodeId"
)
String
node
Id
)
{
return
call
(()
->
(
configService
.
getPublishConfigByPanelId
(
node
Id
)));
public
R
<
InstrumentPanelConfigVo
>
childrenPanel
(
@PathVariable
String
appId
,
@RequestParam
(
"
panelId"
)
String
panel
Id
)
{
return
call
(()
->
(
configService
.
getPublishConfigByPanelId
(
panel
Id
)));
}
...
...
src/main/java/com/syc/slm/slmbi/service/impl/InstrumentPanelConfigServiceImpl.java
View file @
3c103baf
...
...
@@ -325,7 +325,7 @@ public class InstrumentPanelConfigServiceImpl extends ServiceImpl<InstrumentPane
vo
.
setPermissions
(
permissionService
.
getPublishPermissionByPanelId
(
instrumentPanelId
,
published
.
value
));
InstrumentPanelVo
panelVo
=
new
InstrumentPanelVo
();
if
(
PublishedStatus
.
PUBLISHED
.
value
.
equals
(
published
.
value
))
{
InstrumentPanelDraft
panel
=
draftService
.
getById
(
instrumentPanelId
);
InstrumentPanelDraft
panel
=
draftService
.
getBy
Panel
Id
(
instrumentPanelId
);
BeanUtils
.
copyProperties
(
panel
,
panelVo
);
}
else
{
...
...
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