|
@@ -211,13 +211,17 @@ export default defineComponent({
|
|
|
state.errorText = '请使用微信扫码';
|
|
|
} else if (pay_channel == 'alipay_qr') {
|
|
|
// 支付宝支付
|
|
|
- //授权
|
|
|
- const code = getUrlCode('auth_code');
|
|
|
- if (code) {
|
|
|
- state.code = code; // 赋值code码
|
|
|
- } else {
|
|
|
- goAliAuth(state.alipayAppId);
|
|
|
+ // 易宝才需要
|
|
|
+ if (isYeePay) {
|
|
|
+ //授权
|
|
|
+ const code = getUrlCode('auth_code');
|
|
|
+ if (code) {
|
|
|
+ state.code = code; // 赋值code码
|
|
|
+ } else {
|
|
|
+ goAliAuth(state.alipayAppId);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
state.browserStatus = true;
|
|
|
document.title = '支付宝支付';
|
|
|
}
|