Browse Source

bug修改,兼容H5

gcz 1 year ago
parent
commit
164add0a4f

+ 1 - 1
App.vue

@@ -2,7 +2,7 @@
 	export default {
 		globalData: {
 		    statusBarHeight: 0, // 状态导航栏高度
-		    navHeight: 0, // 总体高度
+		    navHeight: 44, // 总体高度
 		    navigationBarHeight: 0, // 导航栏高度(标题栏高度)
 		},
 		onLaunch: function() {

+ 13 - 2
center/order.vue

@@ -421,7 +421,11 @@
 				        // "sign": "A842B45937F6EFF60DEC7A2EAA52D5A0" // 签名,这里用的 MD5/RSA 签名
 				    },
 				    success(res) {
-						that.payQuery();
+						setTimeout(()=>{
+							this.tabsCurrent = 2;
+							this.reloadList();
+						},1500)
+						// that.payQuery();
 					},
 				    fail(e) {
 						console.log('wxPayfail',e);
@@ -524,7 +528,11 @@
 						signType: 'SHA1', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'     
 						paySign: that.payResult.paySign, // 支付签名     
 						success: () => {
-							that.payQuery();
+							setTimeout(()=>{
+								that.tabsCurrent = 2;
+								that.reloadList();
+							},1500)
+							// that.payQuery();
 						},
 						fail: (e) => {
 							uni.$u.route('/center/order', {
@@ -533,6 +541,9 @@
 							console.log('wxPayfail', e);
 						},
 						cancel: () => {
+							uni.$u.route('/center/order', {
+								status: 0
+							});
 							that.cansubmit = true;
 						}
 					})

+ 3 - 0
center/orderdetails.vue

@@ -621,6 +621,9 @@
 							console.log('wxPayfail', e);
 						},
 						cancel: () => {
+							uni.$u.route('/center/order', {
+								status: 0
+							});
 							that.cansubmit = true;
 						}
 					})

+ 2 - 1
components/ay-qrcode/ay-qrcode.vue

@@ -114,7 +114,8 @@
 				
 				
 				if (!isAndroid) {
-					that.marginLeft = 46;
+					// that.marginLeft = 46;
+					that.marginLeft = 0;
 				}
 				
 				that.isAndroid = isAndroid ;

+ 2 - 2
components/ay-qrcode/weapp-qrcode.js

@@ -320,10 +320,10 @@ var QRCode;
     QRCode.prototype.makeImage = function () {
         var _oContext
         if (this._htOption.usingIn) {
-            _oContext = wx.createCanvasContext(this.canvasId, this._htOption.usingIn)
+            _oContext = uni.createCanvasContext(this.canvasId, this._htOption.usingIn)
         }
         else {
-            _oContext = wx.createCanvasContext(this.canvasId)
+            _oContext = uni.createCanvasContext(this.canvasId)
         }
         var _htOption = this._htOption;
         var oQRCode = this._oQRCode

+ 4 - 1
pages/bookticket.vue

@@ -349,7 +349,7 @@
 				}).catch(err => {
 					this.cansubmit = true;
 					uni.$u.toast(err.msg);
-					if (err.msg.includes('场次限购限购')) {
+					if (err.msg.includes('限购')) {
 						setTimeout(() => {
 							uni.$u.route('/center/order', {
 								status: 0
@@ -550,6 +550,9 @@
 							console.log('wxPayfail', e);
 						},
 						cancel: () => {
+							uni.$u.route('/center/order', {
+								status: 0
+							});
 							that.cansubmit = true;
 						}
 					})

+ 10 - 3
pages/ticketlist.vue

@@ -176,9 +176,11 @@
 		<!-- 分享选择弹出内容 -->
 		<view class="share-option" :class="{shareShow:shareShow}">
 			<view class="overlay" v-if="shareShow"  @click="shareShow=false"></view>
+			<!-- #ifdef MP-WEIXIN -->
 			<button class="share-option-item wx-share" data-name="shareBtn" open-type="share">
 				发送给朋友
 			</button>
+			<!-- #endif --> 
 			<view class="share-option-item" @click="getPoster">生成海报</view>
 			<view class="share-option-item" @click="shareShow=false">取消</view>
 		</view>
@@ -331,6 +333,8 @@
 				uni.showLoading();
 				let auditoriumId= this.auditoriumList[this.auditoriumIndex]?.id;
 				if(!auditoriumId){return}
+				console.log('this.dateList',this.dateList);
+				console.log('this.dateIndex',this.dateIndex);
 				let dateOBJ = this.dateList[this.dateIndex];
 				let param = {
 					auditoriumId:auditoriumId,//演艺厅ID(演艺厅列表)
@@ -368,7 +372,9 @@
 			    return day
 			  },
 			setDate(firstDay,isSelect){
+				console.log('this.performDateList',this.performDateList);
 				if(this.performDateList[0]?.performDate&&!isSelect){
+					console.log('111111');
 					// firstDay = new Date(this.performDateList[0].performDate);
 					const uniquePerformDateList = Array.from(new Set(this.performDateList.map(JSON.stringify))).map(JSON.parse);//去重
 					// console.log('uniquePerformDateList',uniquePerformDateList);
@@ -379,12 +385,13 @@
 						// console.log('setDate day',day);
 						return { year:day[0],month:String(day[1]),day:String(day[2]), fullDay:`${day[0]}-${String(day[1])}-${String(day[2])}`}
 					});
-					// console.log('this.firstGet',this.firstGet);
+					console.log('this.dateList',this.dateList);
+					this.dateIndex = 0;
 					this.getTimes();
 					// 
 					return 
 				}
-				// console.log('this.dateListthis.dateListthis.dateListthis.dateList',this.dateList);
+				console.log('this.dateListthis.dateListthis.dateListthis.dateList',this.dateList);
 				// 前端写演出日期(今天,明天,后天)
 				let today = firstDay;
 				let tomorrow = new Date();
@@ -875,7 +882,7 @@
 	}
 }
 .canvas{
-	position: absolute;
+	position: fixed;
 	left: -99999px;
 }
 </style>