From 1e8bca1e87d57b78efad29a07c701eb89009b3ae Mon Sep 17 00:00:00 2001 From: liugongyu <290219706@qq.com> Date: Tue, 17 May 2022 16:46:42 +0800 Subject: [PATCH] 商户券明细 --- pages/businessCard/cardDetail.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+), 0 deletions(-) diff --git a/pages/businessCard/cardDetail.vue b/pages/businessCard/cardDetail.vue index 2e850cb..e56869d 100644 --- a/pages/businessCard/cardDetail.vue +++ b/pages/businessCard/cardDetail.vue @@ -334,21 +334,37 @@ export default { console.log('picker发送选择改变,携带值为', e.detail.value) this.index = e.detail.value this.cardType = storage[this.index].id + this.pageNum = 1 + this.pageSize = this.pageSize + this.totalPages = 1 + this.dataList = [] this.couponIssuedParkPage() }, bindPickerChangeWay: function (e, storage) { console.log(storage) this.indexWay = e.detail.value this.isUesed = storage[this.indexWay].id + this.pageNum = 1 + this.pageSize = this.pageSize + this.totalPages = 1 + this.dataList = [] this.couponIssuedParkPage() }, bindStartDateChange: function (e) { console.log(e.detail.value) this.beginTime = e.detail.value + this.pageNum = 1 + this.pageSize = this.pageSize + this.totalPages = 1 + this.dataList = [] this.couponIssuedParkPage() }, bindEndDateChange: function (e) { this.endTime = e.detail.value + this.pageNum = 1 + this.pageSize = this.pageSize + this.totalPages = 1 + this.dataList = [] this.couponIssuedParkPage() }, getDate(type) { -- libgit2 0.21.4