Browse Source

切换支付

lex 1 year ago
parent
commit
8595feb91b

+ 1 - 0
src/student/music-group/pre-apply/order-detail.tsx

@@ -121,6 +121,7 @@ export default defineComponent({
       const params = qs.stringify({
         pay_channel: val.pay_channel,
         wxAppId: config.wxAppId,
+        alipayAppId: config.alipayAppId,
         body: config.body,
         price: config.price,
         paymentType: config.paymentType,

+ 5 - 4
src/views/adapay/pay-define/index.tsx

@@ -36,12 +36,13 @@ export default defineComponent({
         const payMap: any = {
           merOrderNo: state.orderNo,
           paymentChannel: state.pay_channel, // 支付渠道
-          userId: state.userId
+          userId: state.userId,
+          code: state.code
         }
         //     // 判断是否是微信公众号支付
-        if (state.pay_channel == 'wx_pub') {
-          payMap.code = state.code
-        }
+        // if (state.pay_channel == 'wx_pub') {
+        //   payMap.code = state.code
+        // }
         console.log(payMap, 'payMap')
         const { data } = await request.post('/api-student/open/userOrder/executePayment', {
           hideLoading: false,