Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -137,11 +137,11 @@ export default { | ... | @@ -137,11 +137,11 @@ export default { |
| 137 | getDmDataList(this.selectForm).then((res) => { | 137 | getDmDataList(this.selectForm).then((res) => { |
| 138 | this.loading = false; | 138 | this.loading = false; |
| 139 | if (res.code === 200) { | 139 | if (res.code === 200) { |
| 140 | + this.total = res.data.total; | ||
| 140 | if (res.data.total === 0) { | 141 | if (res.data.total === 0) { |
| 141 | this.msgWarning('未查询到数据') | 142 | this.msgWarning('未查询到数据') |
| 142 | } else { | 143 | } else { |
| 143 | this.data = res.data.list; | 144 | this.data = res.data.list; |
| 144 | - this.total = res.data.total; | ||
| 145 | } | 145 | } |
| 146 | } else { | 146 | } else { |
| 147 | this.msgWarning(res.msg) | 147 | this.msgWarning(res.msg) | ... | ... |
-
Please register or login to post a comment