Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-10-28 14:36:43 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a435c8635a12ef985c657f872950bc86fde98430
a435c863
1 parent
4d530748
参数获取修正
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/systemLog/dmLog/index.vue
src/views/systemLog/dmLog/index.vue
View file @
a435c86
...
...
@@ -137,11 +137,11 @@ export default {
getDmDataList(this.selectForm).then((res) => {
this.loading = false;
if (res.code === 200) {
this.total = res.data.total;
if (res.data.total === 0) {
this.msgWarning('未查询到数据')
} else {
this.data = res.data.list;
this.total = res.data.total;
}
} else {
this.msgWarning(res.msg)
...
...
Please
register
or
login
to post a comment