Browse Source

更新地址

lex 1 year ago
parent
commit
351f22b550
1 changed files with 9 additions and 1 deletions
  1. 9 1
      src/views/adapay/pay-define/index.tsx

+ 9 - 1
src/views/adapay/pay-define/index.tsx

@@ -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 = '支付宝支付'
         }