Commit cf0c6e94 by 陈羽

update: dist

parent 588d150e
...@@ -218,6 +218,7 @@ export default { ...@@ -218,6 +218,7 @@ export default {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
flex-wrap: wrap;
margin-bottom: 12px; margin-bottom: 12px;
.copyBtn { .copyBtn {
width: 96px; width: 96px;
......
...@@ -189,7 +189,7 @@ export default { ...@@ -189,7 +189,7 @@ export default {
let resData = res.data; let resData = res.data;
if (resData.errorCode == 1 && resData.result) { if (resData.errorCode == 1 && resData.result) {
that.tableData = resData.result.list || []; that.tableData = resData.result.list || [];
that.total = resData.result.total; that.total = resData.result.pageInfo && resData.result.pageInfo.total;
} else { } else {
that.tableData = []; that.tableData = [];
errMsg.errorMsg(resData); errMsg.errorMsg(resData);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment