Browse Source

点金计划优化

tianhui 3 years ago
parent
commit
b738d41f6d

+ 4 - 0
main.js

@@ -45,3 +45,7 @@ import httpApi from '@/common/http.api.js';
 Vue.use(httpApi, app);
 
 app.$mount()
+// //导入
+// import cookie from "js-cookie"
+// //将cookie转换为 vue 原型
+// Vue.prototype.Cook = cookie

+ 5 - 0
package-lock.json

@@ -2,6 +2,11 @@
   "requires": true,
   "lockfileVersion": 1,
   "dependencies": {
+    "js-cookie": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.0.tgz",
+      "integrity": "sha512-oUbbplKuH07/XX2YD2+Q+GMiPpnVXaRz8npE7suhBH9QEkJe2W7mQ6rwuMXHue3fpfcftQwzgyvGzIHyfCSngQ=="
+    },
     "vue-jsonp": {
       "version": "2.0.0",
       "resolved": "https://registry.npm.taobao.org/vue-jsonp/download/vue-jsonp-2.0.0.tgz",

+ 9 - 0
pages.json

@@ -161,6 +161,15 @@
 		        "navigationBarTitleText":"支付"
 		    }
 		    
+		},
+		{
+		    "path" : "pages/paymentMethod/jumpMiddle",
+		    "style" :                                                                                    
+		    {
+		        "navigationStyle":"custom",// 隐藏系统导航栏
+		        "navigationBarTitleText":"跳转"
+		    }
+		    
 		},
 		{
 		    "path" : "pages/handleMonthly/monthPay",

+ 60 - 0
pages/paymentMethod/jumpMiddle.vue

@@ -0,0 +1,60 @@
+<template>
+	<view>
+		<a ref="payUrlRef" :href="jumpUrl"></a>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				jumpUrl: "",
+			}
+		},
+		onload() {
+			let url = localStorage.getItem('jumpUrl');
+			// let url = this.cookie.get("jumpUrl");
+			if(url){
+				this.jumpUrl = url;
+			}else{
+				this.jumpUrl = 'https://h5.pdzhtc.com';
+			}
+			this.getOrderId()
+		},
+		mounted() {
+			this.$refs.payUrlRef.click();
+		},
+		methods: {
+			getOrderId(id) {
+				const localToken = JSON.parse(localStorage.getItem('lifeData') ?? '{}')
+				const token = localToken?.data?.vuex_token
+				$.ajax({
+					//请求方式
+					type : "get",
+					//请求地址
+					url : baseUrl + '/client/orderinfo/orderListByPoly/' + id,
+					// token
+					beforeSend: function(request) {
+						request.setRequestHeader("Authorization", 'Bearer ' + token);
+					},
+					//请求成功
+					success: function(result) {
+							if (result.code === 200) {
+								this.jumpUrl = result?.data?.jumpUrl ?? 'https://h5.pdzhtc.com'
+							} else {
+								alert(result.msg)
+							}
+					},
+					//请求失败,包含具体的错误信息
+					error: function(e){
+							alert('程序错误!')
+					}
+			});
+			}
+		}
+	}
+</script>
+
+<style>
+
+</style>

+ 1 - 0
pages/paymentMethod/paymentMethod.vue

@@ -183,6 +183,7 @@
 							// }
 							localStorage.setItem('jumpUrl', this.jumpUrl)
 							location.href = res.data.qrCodeUrl
+							// this.cookie.set("jumpUrl",this.jumpUrl);
 						} else {
 							uni.hideLoading();
 						}

+ 5 - 3
static/html/wxPayCallback.html

@@ -52,10 +52,10 @@
 <body>
     <div class="container">
 		<div class="text-img">
-			<img src="https://h5.pdzhtc.com/static/img/text-html-bg.png" alt="" width="375" height="150"/>
+			<img src="https://h5.pdzhtc.com/static/img/text-html-bg.png" alt="" width="80%" height="20%"/>
 		</div>
 		<div class="car-img">
-			<img src="https://h5.pdzhtc.com/static/img/car-html-bg.png" alt="" width="375" height="270"/>
+			<img src="https://h5.pdzhtc.com/static/img/car-html-bg.png" alt="" width="65%" height="25%"/>
 		</div>
 		<a href="javascript:goToBgzchina()" class="button">回到普定智慧停车</a>
 	</div>
@@ -89,9 +89,11 @@
     
         //测试跳转到其他页面【非必需】
         function goToBgzchina() {
+			// let jumpUrl = localStorage.getItem('jumpUrl') || 'https://h5.pdzhtc.com';
+			// alert('111',jumpUrl)
             var mchData = {
                 action: 'jumpOut',
-                jumpOutUrl: 'https://h5.pdzhtc.com' //要跳转到的页面。注意:不支持跳转到小程序
+                jumpOutUrl: 'https://h5.pdzhtc.com/#/pages/paymentMethod/jumpMiddle' //要跳转到的页面。注意:不支持跳转到小程序
             };
             var postData = JSON.stringify(mchData);
             parent.postMessage(postData, 'https://payapp.weixin.qq.com');