|
@@ -939,6 +939,7 @@ export default {
|
|
|
insertFormPlates: [],
|
|
|
saveBtnLoading: false,
|
|
|
onlyDirect: false,
|
|
|
+ nextCursor: ''
|
|
|
};
|
|
|
},
|
|
|
filters: {
|
|
@@ -2036,12 +2037,14 @@ export default {
|
|
|
// role: this.role
|
|
|
roleId: this.roleId,
|
|
|
onlyDirect: this.onlyDirect ? "1" : "0",
|
|
|
+ cursor: this.nextCursor, // 游标
|
|
|
},
|
|
|
(res) => {
|
|
|
this.listLoading = false;
|
|
|
if (res.code == "ok") {
|
|
|
this.list = res.data.records;
|
|
|
this.total = res.data.total;
|
|
|
+ this.nextCursor = this.data.nextCursor
|
|
|
} else {
|
|
|
this.$message({
|
|
|
message: res.msg,
|