Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
finance-manage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
finance-oa
finance-manage
Commits
d3595cd9
Commit
d3595cd9
authored
Oct 03, 2020
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修正菜单提示信息错误
parent
fb07677c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysMenuController.java
...va/com/ruoyi/web/controller/system/SysMenuController.java
+2
-2
No files found.
ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysMenuController.java
View file @
d3595cd9
...
...
@@ -126,11 +126,11 @@ public class SysMenuController extends BaseController
else
if
(
UserConstants
.
YES_FRAME
.
equals
(
menu
.
getIsFrame
())
&&
!
StringUtils
.
startsWithAny
(
menu
.
getPath
(),
Constants
.
HTTP
,
Constants
.
HTTPS
))
{
return
AjaxResult
.
error
(
"
新增
菜单'"
+
menu
.
getMenuName
()
+
"'失败,地址必须以http(s)://开头"
);
return
AjaxResult
.
error
(
"
修改
菜单'"
+
menu
.
getMenuName
()
+
"'失败,地址必须以http(s)://开头"
);
}
else
if
(
menu
.
getMenuId
().
equals
(
menu
.
getParentId
()))
{
return
AjaxResult
.
error
(
"
新增
菜单'"
+
menu
.
getMenuName
()
+
"'失败,上级菜单不能选择自己"
);
return
AjaxResult
.
error
(
"
修改
菜单'"
+
menu
.
getMenuName
()
+
"'失败,上级菜单不能选择自己"
);
}
menu
.
setUpdateBy
(
SecurityUtils
.
getUsername
());
return
toAjax
(
menuService
.
updateMenu
(
menu
));
...
...
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