Browse Source

1. 调整公众号支付

MONSTER-ygh 1 year ago
parent
commit
d972db4232
6 changed files with 699 additions and 464 deletions
  1. 50 1
      center/order.vue
  2. 51 3
      center/orderdetails.vue
  3. 5 0
      center/refund.vue
  4. 5 0
      package-lock.json
  5. 2 1
      package.json
  6. 586 459
      pages/bookticket.vue

+ 50 - 1
center/order.vue

@@ -63,6 +63,9 @@
 	import tabbar from "../components/tabbar.vue";
 	// 引入mescroll-mixins.js
 	import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
+	// #ifdef H5
+	import wxH5 from "weixin-jsapi";
+	// #endif
 	export default {
 		mixins: [MescrollMixin], // 使用mixin
 		components:{
@@ -266,8 +269,12 @@
 			},
 			pay(item){
 				console.log('pay',item);
-				// this.gotoPay(item.id);
+				// #ifdef H5
+				this.gotoPay(item.id);
+				// #endif
+				// #ifdef MP
 				this.setTemplate(item.id);
+				// #endif
 				// uni.$u.route('/shopping/pay', {
 				// 	orderId: item.id,
 				// 	// openid: that.vuex_wechatOpenid,
@@ -381,7 +388,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{
@@ -489,6 +501,43 @@
 					}).catch(err=>{
 					console.log('memberInfo',err.data);
 				})
+			},
+			/**
+			 * 公众号微信支付
+			 */
+			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
 			}
 		}
 	}

+ 51 - 3
center/orderdetails.vue

@@ -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
 			}
-			
 
 		}
 	}

+ 5 - 0
center/refund.vue

@@ -101,7 +101,12 @@
 					return
 				}
 				// this.templateEven();
+				// #ifdef MP
 				this.setTemplate();
+				// #endif
+				// #ifdef H5
+				this.handleSubmit();
+				// #endif
 				
 			},
 			handleSubmit(){

+ 5 - 0
package-lock.json

@@ -6,6 +6,11 @@
       "version": "2.29.4",
       "resolved": "https://registry.npmmirror.com/moment/-/moment-2.29.4.tgz",
       "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w=="
+    },
+    "weixin-jsapi": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmmirror.com/weixin-jsapi/-/weixin-jsapi-1.1.0.tgz",
+      "integrity": "sha512-986drpgKs1yf8gK1A/hrdF2U5cjp/zW/7bhoL37JLoePhNiO14JqZpa+wlNslge0Hlw7gEXMTnEntFvvSXz8Bw=="
     }
   }
 }

+ 2 - 1
package.json

@@ -22,6 +22,7 @@
     }
   },
   "dependencies": {
-    "moment": "^2.29.4"
+    "moment": "^2.29.4",
+    "weixin-jsapi": "^1.1.0"
   }
 }

File diff suppressed because it is too large
+ 586 - 459
pages/bookticket.vue