From 7d025ad8c35528d9ebd1ec741ed5eed72f9e7995 Mon Sep 17 00:00:00 2001 From: tx <2622874537@qq.com> Date: Thu, 5 Sep 2024 18:00:43 +0800 Subject: [PATCH] =?UTF-8?q?vip=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- page_vip/card_his.vue | 140 ++++++++++++ page_vip/myVip_index.vue | 32 ++- page_vip/vip_his.vue | 173 +++++++++++++++ page_vip/vip_index.vue | 7 +- pages.json | 18 ++ pages/index/index.vue | 2 +- pages/my.vue | 423 +++++++++++++++++++++++------------- pages_admin/admin_worke.vue | 2 +- 8 files changed, 625 insertions(+), 172 deletions(-) create mode 100644 page_vip/card_his.vue create mode 100644 page_vip/vip_his.vue diff --git a/page_vip/card_his.vue b/page_vip/card_his.vue new file mode 100644 index 0000000..0341694 --- /dev/null +++ b/page_vip/card_his.vue @@ -0,0 +1,140 @@ + + + + + \ No newline at end of file diff --git a/page_vip/myVip_index.vue b/page_vip/myVip_index.vue index 6eb0bb7..681257e 100644 --- a/page_vip/myVip_index.vue +++ b/page_vip/myVip_index.vue @@ -4,36 +4,36 @@ height='45'> - + - 电单车15天5次卡 + {{item.couponName}} - 有效期至2024-08-04 + 有效期至{{formatDate(item.expirationTime) }} - 剩余次数 5 + 剩余次数 {{item.limitNum}} - + - 电单车15天5次卡 + {{item.couponName}} - 有效期至2024-08-04 + 有效期至{{formatDate(item.expirationTime) }} 已过期 - + - 有效期至2024-08-28 + 有效期至{{formatDate(item.expirationTime) }} - + - 有效期至2024-08-28 + 有效期至{{formatDate(item.expirationTime) }} @@ -72,6 +72,14 @@ } }); }, + formatDate(dateString) { + if (!dateString) return ''; + const date = new Date(dateString); + const year = date.getFullYear(); + const month = (date.getMonth() + 1).toString().padStart(2, '0'); // 月份从0开始,需要加1 + const day = date.getDate().toString().padStart(2, '0'); + return `${year}-${month}-${day}`; + }, getcard(){ let data={ userId:this.userinfo.userId @@ -81,7 +89,7 @@ if (res.code == 200) { this.CouponLists = res.data - } else { + } else { // uni.showToast({ // title: res.msg, // icon: 'none', diff --git a/page_vip/vip_his.vue b/page_vip/vip_his.vue new file mode 100644 index 0000000..ef1d639 --- /dev/null +++ b/page_vip/vip_his.vue @@ -0,0 +1,173 @@ + + + + + \ No newline at end of file diff --git a/page_vip/vip_index.vue b/page_vip/vip_index.vue index cca9e8d..a56159f 100644 --- a/page_vip/vip_index.vue +++ b/page_vip/vip_index.vue @@ -26,7 +26,7 @@ 月卡会员{{ daysUntilExpiration }}天后到期 - + 购买记录 > @@ -104,6 +104,11 @@ this.getCouponLists() }, methods: { + topage(){ + uni.navigateTo({ + url:'/page_vip/vip_his' + }) + }, calculateDaysUntilExpiration() { const currentDate = new Date(); const expirationDate = new Date(this.userinfo.expirationTime); diff --git a/pages.json b/pages.json index 33b680c..dc97f81 100644 --- a/pages.json +++ b/pages.json @@ -241,6 +241,24 @@ "enablePullDownRefresh": false, "navigationStyle": "custom" } + }, + { + "path" : "vip_his", + "style" : + { + "navigationBarTitleText": "上传", + "enablePullDownRefresh": false, + "navigationStyle": "custom" + } + }, + { + "path" : "card_his", + "style" : + { + "navigationBarTitleText": "上传", + "enablePullDownRefresh": false, + "navigationStyle": "custom" + } } diff --git a/pages/index/index.vue b/pages/index/index.vue index 38a9ef6..ff896a0 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -4404,7 +4404,7 @@ }); }, fail(err) { - that.closePay() + // that.closePay() that.ispaid = false // 支付失败逻辑 uni.showToast({ diff --git a/pages/my.vue b/pages/my.vue index 76062f9..8b4f26e 100644 --- a/pages/my.vue +++ b/pages/my.vue @@ -1,12 +1,14 @@