Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
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
赵啸非
smart_gov_platform
Commits
fd01086a
Commit
fd01086a
authored
Nov 20, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf:优化无操作权限提示
parent
8c2fabbd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
portal-manager-ui/admin/src/mixins/menu.js
portal-manager-ui/admin/src/mixins/menu.js
+0
-2
portal-manager-ui/admin/src/request/request.js
portal-manager-ui/admin/src/request/request.js
+1
-1
portal-manager-ui/admin/src/views/thePlatformIsSet/components/menuManagement/menuMgmt.vue
...s/thePlatformIsSet/components/menuManagement/menuMgmt.vue
+2
-1
No files found.
portal-manager-ui/admin/src/mixins/menu.js
View file @
fd01086a
...
...
@@ -85,8 +85,6 @@ export default {
// console.log(this.menuListData);
// console.log(this.menuTreeData);
// this.getMenuDict(); //弃用
}
else
{
this
.
$message
.
error
(
res
.
msg
);
}
});
},
...
...
portal-manager-ui/admin/src/request/request.js
View file @
fd01086a
...
...
@@ -38,7 +38,7 @@ axios.interceptors.response.use(
if
(
response
.
data
.
code
!==
undefined
&&
response
.
data
.
msg
!==
undefined
)
{
// 取出数据
let
{
code
,
msg
}
=
response
.
data
;
if
(
code
===
-
1
)
{
if
(
code
===
-
1
||
code
===
405
)
{
message
.
error
({
content
:
msg
,
maxCount
:
1
,
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/menuManagement/menuMgmt.vue
View file @
fd01086a
...
...
@@ -212,6 +212,7 @@ export default {
page
:
this
.
tablePagination
.
current
,
size
:
-
1
,
});
if
(
res
.
code
!=
1
)
return
;
let
{
data
,
total
,
dict
}
=
res
.
data
;
let
{
menuType
}
=
dict
;
this
.
tablePagination
.
total
=
total
;
...
...
@@ -410,4 +411,4 @@ export default {
}
}
}
</
style
>
\ No newline at end of file
</
style
>
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