From 044aa7f874f8fa37066e2da92901f40470b7090b Mon Sep 17 00:00:00 2001
From: 石广澎 <shiguangpeng@163.com>
Date: 星期四, 12 九月 2024 09:34:04 +0800
Subject: [PATCH] feat(支付): 修改系统名称
---
pay/scanpay.vue | 33 +++++++++++++++++++++++++--------
1 files changed, 25 insertions(+), 8 deletions(-)
diff --git a/pay/scanpay.vue b/pay/scanpay.vue
index bcc045f..b758326 100644
--- a/pay/scanpay.vue
+++ b/pay/scanpay.vue
@@ -39,6 +39,7 @@
font-size: 13px;
color: #999
}
+
.btn {
font-size: 13px;
color: #1E8BE0
@@ -233,7 +234,7 @@
code: opt.code
}
let code = opt.code
- if (this.payWay == 2&&opt.state == 1 ) { //寰俊
+ if (this.payWay == 2 && opt.state == 1) { //寰俊
params.getUserInfo = 1
}
if (this.payWay == 5) { //鏀粯瀹�
@@ -303,7 +304,7 @@
uni.setStorageSync(ACCESSTOKEN, res.token)
uni.setStorageSync('IS_NEW', res.isNew)
this.isNew = res.isNew
- if (!res.isNew) {
+ if (!res.isNew && !uni.$u.test.isEmpty(this.money)) {
this.showCoupon()
}
},
@@ -319,6 +320,16 @@
// 鏇存柊閲戦
changeMoney(str) {
this.money = str;
+ this.couponInfo = {
+ id: '',
+ discount: 0,
+ thresholdValue: 0
+ } // 浼樻儬鍒稿唴瀹�
+ this.checkCoupon = {
+ id: null,
+ discount: 0,
+ thresholdValue: 0
+ }
},
// 灞曠ず閿洏
showBord() {
@@ -360,7 +371,7 @@
}).catch((err) => {
clearTimeout(timer)
this.shopInfo.scanFlag = 0
- this.tips = err.description||'褰撳墠鐢ㄦ埛杩囧锛岃绋嶅悗閲嶈瘯锝瀇锝�'
+ this.tips = err.description || '褰撳墠鐢ㄦ埛杩囧锛岃绋嶅悗閲嶈瘯锝瀇锝�'
this.loading = false
})
@@ -386,7 +397,11 @@
},
// 鑾峰彇浼氬憳鐩稿叧淇℃伅
showCoupon() {
- if(this.UNIONID){
+ if (this.UNIONID) {
+ if (uni.$u.test.isEmpty(this.money)) {
+ uni.$u.toast('璇疯緭鍏ラ噾棰濓紒')
+ return
+ }
//鑾峰彇鐢ㄦ埛浼樻儬鍒�
queryUseSweepPayCoupon({
params: {
@@ -398,7 +413,7 @@
this.couponList = res
this.couponShow = true
})
- }else{
+ } else {
this.toRegister()
}
@@ -513,9 +528,11 @@
});
},
closeOrder() {
- closeOrder({params:{
- id: this.orderId,
- }}).then(res => {
+ closeOrder({
+ params: {
+ id: this.orderId,
+ }
+ }).then(res => {
})
}
}
--
Gitblit v1.9.1