From c9aed0a7a2cfa34fc2116bf38ed47513cd9c12ef Mon Sep 17 00:00:00 2001
From: 石广澎 <shiguangpeng@163.com>
Date: 星期四, 08 八月 2024 15:13:52 +0800
Subject: [PATCH] feat(支付): 云闪付
---
pay/scanpay.vue | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/pay/scanpay.vue b/pay/scanpay.vue
index 84d955b..a910cda 100644
--- a/pay/scanpay.vue
+++ b/pay/scanpay.vue
@@ -208,7 +208,7 @@
uni.setStorageSync('SHOPID', opt.shopId)
uni.setStorageSync('SMONEY', opt.smoney)
uni.setStorageSync('AQCI', opt.activityQrcodeId)
- this.UNIONID = uni.getStorageSync('UNIONID' + this.payWay) || null
+ this.UNIONID = uni.getStorageSync('UNIONID') || null
this.isNew = uni.getStorageSync('IS_NEW')
if (opt.smoney) {
this.smoney = opt.smoney
@@ -288,13 +288,16 @@
getToken(res) {
this.token = res.token
if (res.openid) {
- uni.setStorageSync('OPENID' + this.payWay, res.openid)
+ uni.setStorageSync('OPENID', res.openid)
}
if (res.unionid) {
- uni.setStorageSync('UNIONID' + this.payWay, res.unionid)
+ uni.setStorageSync('UNIONID', res.unionid)
}
if (res.aLiUserId) {
- uni.setStorageSync('ALIUSERID' + this.payWay, res.aLiUserId)
+ uni.setStorageSync('ALIUSERID', res.aLiUserId)
+ }
+ if (res.cloudPayUserId) {
+ uni.setStorageSync('UNIONPAYID', res.cloudPayUserId)
}
this.UNIONID = res.unionid
uni.setStorageSync(ACCESSTOKEN, res.token)
--
Gitblit v1.9.1