Browse Source

1111

master
wangjiahai 2 years ago
parent
commit
3c9814dfe6
  1. 8
      pages/card/card.vue

8
pages/card/card.vue

@ -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);
})

Loading…
Cancel
Save