This commit is contained in:
wangjiahai
2023-11-22 15:02:01 +08:00
parent a0adcc93cf
commit 3c9814dfe6

View File

@@ -62,9 +62,13 @@
queryList(pageNo, pageSize) {
let _this = this
_this.$api.cardList({
'customerSid': getApp().globalData.sid
"current": pageNo,
"size": pageSize,
"params": {
"customerSid": getApp().globalData.sid
}
}).then((resp) => {
this.$refs.paging.complete(resp)
this.$refs.paging.complete(resp.records)
}).catch(e => {
_this.$refs.paging.complete(false);
})