require('./index.less'); import 'jquery.cookie' import './helper/response'; import Api from './helper/const'; import Utils from './helper/utils'; const channel = Utils.GetQueryString('channel'); const uid = Utils.GetQueryString('uid'); let payWay = 'wx'; let productId = ''; const getStatus = (orderId) => { // 查询是否成功 $.ajax({ url: Api.composeApiPath(`order/${orderId}`), dataType: "json", async: true, headers: { uid: uid }, type: "GET", success: function (res) { $.removeCookie('orderId'); $.removeCookie('isPayBack'); if ($.cookie('isWx')) { $.removeCookie('isWx'); $('.buy-dialog').css('display', 'none') } if (res.data.status === 2) { console.log('支付成功') system.postMessage('success') } else { console.log('支付失败') system.postMessage('close') } } }); } // 默认微信支付 $('.wx-choose').addClass('choose'); // 渲染页面 // 修改支付方式 const changePayWay = (flag) => { // if (typeof system !== 'undefined') { // system.postMessage(window.location.search) // } if (flag === 'wx' && payWay !== 'wx') { payWay = 'wx'; $('.zfb-choose').removeClass('choose'); $('.wx-choose').addClass('choose'); } if (flag === 'zfb' && payWay !== 'zfb') { payWay = 'zfb'; $('.wx-choose').removeClass('choose'); $('.zfb-choose').addClass('choose'); } } // 生成订单 const createOrder = (method, id) => { let str = method === 'zfb' ? '/aliPay/prePay' : '/wxPay/prePay'; $.ajax({ url: Api.composeApiPath(str), dataType: "json", async: true, data: JSON.stringify({ "channel": channel, "productId": id }), type: "POST", headers: { uid: uid }, contentType: "application/json", success: res => { $.cookie('orderId', res.data.orderId); $.cookie('isPayBack', 1); if (method === 'zfb') { $('body').append( $(`