|
@@ -1,6 +1,6 @@
|
|
|
import request from '@/helpers/request'
|
|
|
import { browser, getUrlCode, moneyFormat } from '@/helpers/utils'
|
|
|
-import { goWechatAuth } from '@/state'
|
|
|
+import { goAliAuth, goWechatAuth } from '@/state'
|
|
|
import numeral from 'numeral'
|
|
|
import { Button, Cell, CellGroup, Icon, showToast } from 'vant'
|
|
|
import { defineComponent, onMounted, reactive } from 'vue'
|
|
@@ -177,6 +177,7 @@ export default defineComponent({
|
|
|
// }
|
|
|
|
|
|
const init = () => {
|
|
|
+ const isYeePay = state.paymentType?.indexOf('yeepay') !== -1
|
|
|
const pay_channel = state.pay_channel
|
|
|
if (browser().weixin) {
|
|
|
if (pay_channel === 'wx_pub') {
|
|
@@ -199,6 +200,13 @@ 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)
|
|
|
+ }
|
|
|
state.browserStatus = true
|
|
|
document.title = '支付宝支付'
|
|
|
}
|