|
@@ -153,6 +153,9 @@
|
|
|
<script>
|
|
|
import { systemInfo } from "@/mixin.js";
|
|
|
import ayQrcode from "@/components/ay-qrcode/ay-qrcode.vue"
|
|
|
+ // #ifdef H5
|
|
|
+ import wxH5 from "weixin-jsapi";
|
|
|
+ // #endif
|
|
|
export default {
|
|
|
mixins:[systemInfo],
|
|
|
components:{
|
|
@@ -362,8 +365,12 @@
|
|
|
}
|
|
|
},
|
|
|
pay(item){
|
|
|
- // this.gotoPay(this.orderDetails.id);
|
|
|
- this.setTemplate(this.orderDetails.id);
|
|
|
+ // #ifdef H5
|
|
|
+ this.gotoPay(this.orderDetails.id);
|
|
|
+ // #endif
|
|
|
+ // #ifdef MP
|
|
|
+ this.setTemplate(this.orderDetails.id);
|
|
|
+ // #endif
|
|
|
// console.log('pay',item);
|
|
|
// uni.$u.route('/center/pay', {
|
|
|
// orderId: item.id,
|
|
@@ -489,7 +496,12 @@
|
|
|
this.$u.api.gotoPay({orderId:orderId,openid:''}).then(res=>{
|
|
|
this.payResult = res.data.payInfo;
|
|
|
this.payResult.package = res.data.payInfo.packageValue;
|
|
|
+ // #ifdef H5
|
|
|
+ this.initConfig(this.payResult)
|
|
|
+ // #endif
|
|
|
+ // #ifdef MP
|
|
|
this.wxPay()
|
|
|
+ // #endif
|
|
|
// if(this.params.paymentMode==1||this.params.paymentMode==4){
|
|
|
// this.wxPay()
|
|
|
// }else{
|
|
@@ -577,8 +589,44 @@
|
|
|
handleMoveQrcode(){
|
|
|
console.log('handleMoveQrcode');
|
|
|
return false
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 公众号微信支付
|
|
|
+ */
|
|
|
+ initConfig() {
|
|
|
+ // #ifdef H5
|
|
|
+ let that = this
|
|
|
+ wxH5.config({
|
|
|
+ debug: false, // 这里一般在测试阶段先用ture,等打包给后台的时候就改回false,
|
|
|
+ appId: that.payResult.appId, // 必填,公众号的唯一标识
|
|
|
+ timestamp: that.payResult.timeStamp, // 必填,生成签名的时间戳
|
|
|
+ nonceStr: that.payResult.nonceStr, // 必填,生成签名的随机串
|
|
|
+ signature: that.payResult.paySign, // 必填,签名
|
|
|
+ jsApiList: ['chooseWXPay', 'checkJsApi'] // 必填,需要使用的JS接口列表
|
|
|
+ })
|
|
|
+ wxH5.ready(() => {
|
|
|
+ wxH5.chooseWXPay({
|
|
|
+ timestamp: that.payResult.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
|
|
|
+ nonceStr: that.payResult.nonceStr, // 支付签名随机串,不长于 32 位
|
|
|
+ package: that.payResult.packageValue, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
|
|
|
+ signType: 'SHA1', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
|
|
|
+ paySign: that.payResult.paySign, // 支付签名
|
|
|
+ success: () => {
|
|
|
+ that.payQuery();
|
|
|
+ },
|
|
|
+ fail: (e) => {
|
|
|
+ uni.$u.route('/center/order', {
|
|
|
+ status: 0
|
|
|
+ });
|
|
|
+ console.log('wxPayfail', e);
|
|
|
+ },
|
|
|
+ cancel: () => {
|
|
|
+ that.cansubmit = true;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ // #endif
|
|
|
}
|
|
|
-
|
|
|
|
|
|
}
|
|
|
}
|