Selaa lähdekoodia

个人中心换接口,对接支付流程,新增支付成功页面

gcz 1 vuosi sitten
vanhempi
commit
a93b7ccdb9
8 muutettua tiedostoa jossa 263 lisäystä ja 30 poistoa
  1. 13 7
      center/center.vue
  2. 62 0
      center/paysuccess.vue
  3. 13 10
      center/people.vue
  4. 30 0
      common/apiurl.js
  5. 7 0
      pages.json
  6. 118 4
      pages/bookticket.vue
  7. 13 8
      pages/ticketlist.vue
  8. 7 1
      utils/filter.js

+ 13 - 7
center/center.vue

@@ -73,12 +73,13 @@
 				staticUrl:this.$commonConfig.staticUrl,
 				avatar:this.$commonConfig.staticUrl+'/img/avatar.png',
 				memberInfo:{},
+				customerMobile:'',
 				tools:[
 					{name:'观看记录',url:'/center/viewrecord',ico:this.$commonConfig.staticUrl+'/img/center-record.png',checkauth:true},
 					{name:'领券中心',url:'/center/mycoupon',ico:this.$commonConfig.staticUrl+'/img/center-coupon.png',checkauth:true},
 					{name:'开具发票',url:'center/invoice',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true},
-					// {name:'客服热线',url:'',ico:this.$commonConfig.staticUrl+'/img/center-call.png',checkauth:true,phone:'13682266542'},
-					{name:'在线客服',chat:'1',ico:this.$commonConfig.staticUrl+'/img/center-call.png'},
+					{name:'客服热线',url:'',ico:this.$commonConfig.staticUrl+'/img/center-call.png',checkauth:true,phone:''},
+					// {name:'在线客服',chat:'1',ico:this.$commonConfig.staticUrl+'/img/center-call.png'},
 				]
 			}
 		},
@@ -93,12 +94,17 @@
 		},
 		methods: {
 			getMemberInfo(){
-				this.$u.api.memberInfo({id:this.vuex_member_info.id}).then(res=>{
-					this.memberInfo = res.data;
+				this.$u.api.personalIndex({userid:this.vuex_member_info.id}).then(res=>{
+					this.memberInfo = res.data.memberInfo;
 					this.avatar =  res.data.avatar;
-					this.$u.vuex('vuex_member_info', res.data);
+					this.tools.forEach(item => {
+					  if (item.name === '客服热线') {
+					    item.phone = res.data.customerMobile;
+					  }
+					});
+					this.$u.vuex('vuex_member_info', res.data.memberInfo);
 					const isExist = this.tools.some(item => item.name === '实名认证');
-					if(!res.data.isAuth&&!isExist){
+					if(!res.data.memberInfo.isAuth&&!isExist){
 						this.tools.push({name:'实名认证',url:'center/factorauth',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true})
 					}
 					// console.log('memberInfo',this.memberInfo);
@@ -110,7 +116,7 @@
 				let that = this;
 				console.log('item',item);
 				
-				if(item.name!=='在线客服'){
+				if(item.name!=='在线客服'&&item.name!=='客服热线'){
 					uni.showToast({
 						title:'开发中',
 						icon:"none"

+ 62 - 0
center/paysuccess.vue

@@ -0,0 +1,62 @@
+<template>
+	<view class="pages">
+		<view class="icon-wrap u-flex u-row-center">
+			<u-icon name="checkmark" color="#fff" size="80"></u-icon>
+		</view>
+		<view class="title">{{title}}</view>
+		<view class="full-btn" @click="btnClick">完成</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				fromPage:'',
+				title:'付款成功'
+			}
+		},
+		onShow() {		
+		},
+		onLoad(page) {
+			this.fromPage = page.fromPage;
+			if(this.fromPage=='nocash'){
+				this.title = '兑换成功'
+			}
+		},
+		methods: {
+			btnClick(){
+				uni.reLaunch({url: '/pages/index/index'});
+			}
+		}
+	}
+</script>
+<style>
+	page{
+		background-color: #F5F5F5;
+	}
+</style>
+<style lang="scss" scoped>
+.pages{
+	text-align: center;
+}
+
+.icon-wrap{
+	width: 180rpx;
+	height: 180rpx;
+	margin: 120rpx auto 20rpx;
+	padding: 20rpx;
+	background-color: #00A447;
+	border-radius: 50%;
+}
+.title{
+	font-size: 32rpx;
+	font-weight: 600;
+	color: #333333;
+	line-height: 40rpx;
+	margin-bottom: 120rpx;
+}
+.full-btn{
+	margin: 20rpx 10%;
+}
+</style>

+ 13 - 10
center/people.vue

@@ -157,16 +157,19 @@
 			},
 			delVisitor(){
 				console.log('form',this.form);
-				this.$u.api.deleteMember({id:this.form.id}).then(res=>{
-					uni.navigateBack()
-					// if(this.type=='addVisitor'){
-					// 	// this.addVisitor()
-					// }else if(this.type=='editVisitor'){
-					// 	// this.editVisitor()
-					// }
-				}).catch(err=>{
-					console.log('deleteMember',err);
-				})
+				uni.showModal({
+				    title: '提示',
+				    content: '确认删除吗!',
+				    success: res => {
+				        if (res.confirm) {
+				            this.$u.api.deleteMember({id:this.form.id}).then(res=>{
+				            	uni.navigateBack()
+				            }).catch(err=>{
+				            	console.log('deleteMember',err);
+				            })
+				        }
+				    }
+				});
 			},
 			cancel(){
 				this.leftClick();

+ 30 - 0
common/apiurl.js

@@ -22,6 +22,11 @@ const apiurl = {
 		url: '/auth/login',
 		type: 'post'
 	},
+	// 个人中心首页
+	personalIndex: {
+		url: '/system/client/personalIndex',
+		type: 'get'
+	},
 	// 查询登录用户信息
 	memberInfo: {
 		url: '/member/memberInfo/getMemberInfo',
@@ -117,6 +122,31 @@ const apiurl = {
 		url: '/member/memberInfoFamily/deleteById',
 		type: 'delete'
 	},
+	// 订单提交
+	submitOrder: {
+		url: '/order/orderInfo/submit',
+		type: 'post'
+	},
+	// 订单支付
+	gotoPay: {
+		url: '/order/orderInfo/gotoPay',
+		type: 'post'
+	},
+	// 支付查询
+	payQuery: {
+		url: '/order/orderInfo/payQuery',
+		type: 'post'
+	},
+	// 订单列表
+	orderList: {
+		url: '/order/orderInfo/pageList',
+		type: 'get'
+	},
+	// 订单详情
+	orderDetails: {
+		url: '/order/orderInfo/selectById',
+		type: 'get'
+	},
 	
 }
 

+ 7 - 0
pages.json

@@ -137,6 +137,13 @@
 						"navigationBarTitleText": "申请退款",
 						"navigationStyle": "custom"
 					}
+				},
+				{
+					"path": "paysuccess",
+					"style": {
+						"navigationBarTitleText": "支付成功",
+						"navigationStyle": "custom"
+					}
 				}
 			]
 		}

+ 118 - 4
pages/bookticket.vue

@@ -113,7 +113,7 @@
 					选择观影人
 				</view>
 				<view class="add-btn u-flex u-row-center" @click="addVisitor">
-					<image class="img" :src="staticUrl+'/img/car.png'" ></image>
+					<!-- <image class="img" :src="staticUrl+'/img/car.png'" ></image> -->
 					添加观影人信息
 				</view>
 				<view class="list">
@@ -164,6 +164,9 @@
 				visitorList:[],//游客列表
 				selectedVisitor:[],//选中的游客
 				params:{},//要提交的数据
+				orderId:'',//订单提交获取
+				payResult:{},//gotoPay结果
+				paysuccess:false,//支付结果
 				
 			}
 		},
@@ -192,6 +195,8 @@
 			console.log('page',page);
 			this.pageData = page;
 			this.performId = page.performId;
+			this.pageData.performTimeId = page.performTimeId;
+			this.pageData.seatTypeId = page.seatTypeId
 			this.getSystemInfo();
 			this.getSettlement();
 			
@@ -221,7 +226,7 @@
 					// console.log('getMemberAll',res.data);
 					this.visitorList =  res.data.list;
 					console.log('this.visitorList',this.visitorList);
-					this.visitors = this.visitorList.filter(obj => obj.memberId==userId);
+					// this.visitors = this.visitorList.filter(obj => obj.memberId==userId);
 					this.visitors = this.visitorList.filter(obj => that.selectedVisitor.includes(obj.id));
 					console.log('this.visitors',this.visitors);
 				}).catch(err=>{
@@ -232,7 +237,9 @@
 				let that = this;
 				// console.log('selectedVisitor',this.selectedVisitor);
 				this.visitorShow = false;
-				this.visitors = this.visitorList.filter(obj => that.selectedVisitor.includes(obj.id));
+				this.visitors = this.visitorList.filter(obj => that.selectedVisitor.includes(obj.id)).map(item=>{
+					return {name:item.name,mobile:item.mobile,idcard:item.idcard}
+				});
 				// console.log('this.visitors',this.visitors);
 			},
 			delVisitor(visitor){
@@ -256,10 +263,117 @@
 				});
 			},
 			submitorder(){
+				let params = {
+					performId:this.pageContent.performId,
+					goodsList:[
+						{
+							goodsId:this.pageContent.goodsId,
+							salePeice:this.pageContent.salePrice,
+							saleNum:1
+						}
+					],
+					auditoriumId:this.pageContent.auditoriumId,
+					performTimeId:this.pageContent.performTimeId,
+					seatTypeId:this.pageContent.seatTypeId,
+					purchaser: {
+					    name: this.pageContent.purchaser.name,
+					    mobile: this.pageContent.purchaser.mobile,
+					    idcard: this.pageContent.purchaser.idcard
+					},
+					viewerList:this.visitors
+				}
 				this.cansubmit = false;
 				console.log('pageData',this.pageData);
 				console.log('visitors',this.visitors);
-				console.log('params',this.params);
+				console.log('params',params);
+				this.$u.api.submitOrder(params).then(res=>{
+					console.log('submitOrder',res.data);
+					this.orderId = res.data.orderId;
+					this.gotoPay();
+				}).catch(err=>{
+					console.log('submitOrder',err);
+				})
+			},
+			gotoPay(){
+				this.$u.api.gotoPay({orderId:this.orderId,openid:''}).then(res=>{
+					this.payResult = res.data.payInfo;
+					this.payResult.package = res.data.payInfo.packageValue;
+					this.wxPay()
+					// if(this.params.paymentMode==1||this.params.paymentMode==4){
+					// 	this.wxPay()
+					// }else{
+					// 	uni.$u.route('/shopping/paysuccess');
+					// }
+					console.log('gotoPayres',res.data);
+				}).catch(err=>{
+					this.paypass = '';
+					this.checkPassShow = false;
+					console.log('gotoPay',err);
+				})				
+			},
+			wxPay(){
+				let that = this;
+				uni.requestPayment({
+					... this.payResult,
+				    "provider": "wxpay", 
+				    "orderInfo": {
+				        // "appid": "wx499********7c70e",  // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
+				        // "noncestr": "c5sEwbaNPiXAF3iv", // 随机字符串
+				        // "package": "Sign=WXPay",        // 固定值
+				        // "partnerid": "148*****52",      // 微信支付商户号
+				        // "prepayid": "wx202254********************fbe90000", // 统一下单订单号 
+				        // "timestamp": 1597935292,        // 时间戳(单位:秒)
+				        // "sign": "A842B45937F6EFF60DEC7A2EAA52D5A0" // 签名,这里用的 MD5/RSA 签名
+				    },
+				    success(res) {
+						that.payQuery();
+					},
+				    fail(e) {
+						console.log('wxPayfail',e);
+					}
+				})				
+			},
+			payQuery(){
+				let that = this;
+				let retryCount = 0;
+				let maxRetryCount = 5; // 设置最大重试次数
+				let interval = 2000; // 设置间隔时间为2秒
+				let timeout = 10000; // 设置超时时间为10秒
+				let timer;
+				uni.showLoading({
+					title:'支付结果查询中'
+				})
+				timer = setInterval(() => {
+					retryCount++;
+					if (retryCount > maxRetryCount || retryCount * interval > timeout) {
+						clearInterval(timer);
+						  uni.hideLoading();
+						console.log("支付查询超时或达到最大重试次数");
+						// 在这里添加超时或达到最大重试次数的处理逻辑
+						uni.$u.route('/center/order');
+					} else {
+						console.log("第" + retryCount + "次查询");
+						// 调用查询支付状态的方法
+						// 如果支付状态为成功,则清除定时器并处理成功的逻辑
+						// 如果支付状态为失败,则清除定时器并处理失败的逻辑
+						this.$u.api.payQuery({orderId:this.orderId}).then(res=>{
+							// 0-未支付 1-已支付 2-支付中 3-支付失败 4-支付退款
+							let payStatus = res.data.payStatus;
+							if(payStatus===1){
+								uni.$u.route('/center/paysuccess');
+							}else if(payStatus===0||payStatus===2){
+								this.payQuery()
+							}else if(payStatus===3){
+								uni.toast('支付失败')
+							}
+							clearInterval(timer);
+						}).catch(err=>{
+							console.log('payQuery',err);
+						}).finally(()=>{
+							uni.hideLoading()
+						})
+					}
+				}, interval);
 			},
 
 		}

+ 13 - 8
pages/ticketlist.vue

@@ -81,6 +81,7 @@
 							<view class="left u-flex">
 								<!-- 购票须知
 								<u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon> -->
+								{{item.goodsSnapshot}}
 							</view>
 							<view class="btn" @click="book(item)" v-if="item.quantity>0&&sessionList.length>=1">预定</view>
 							<view class="btn disabled" v-else>无票</view>
@@ -197,7 +198,7 @@
 				posterSrc:'',
 				performInfo:{},//节目详情
 				formerNotice:{},//节目观影须知
-				ticketDay:[{day:'2023-12-05',ishave:false},{day:'2023-12-06',ishave:false},{day:'2023-12-07',ishave:true},{day:'2023-12-08',ishave:false}],//有票的日期
+				performDateList:[],//有票的日期
 			}
 		},
 		onShow() {
@@ -233,6 +234,7 @@
 					this.theatre =  res.data.theatreList[0];
 					this.auditoriumList  = res.data.theatreList[0].auditoriumList;
 					this.ticketTypeList = res.data.goodsList;
+					this.performDateList = this.auditoriumList[this.auditoriumIndex].performDateList;
 					this.getTimes()
 					// console.log('auditoriumList',this.auditoriumList);
 				}).catch(err=>{
@@ -281,18 +283,21 @@
 				 // console.log('day',day);
 				 // console.log('thisthisthisthisthisthisthisthisthis',parentThis);
 				 // console.log('==================================',day.date.toISOString().split('T')[0]);
-				let ticket = parentThis.ticketDay.find(item => item.day === day.date.toISOString().split('T')[0]);
-				if(ticket&&ticket.ishave){
-					day.bottomInfo = '有票'
-					day.dot = true
-				}else if(ticket){
+				let ticket = parentThis.performDateList.find(item => item.performDate === day.date.toISOString().split('T')[0]);
+				if(ticket){
 					day.dot = true
 				}
+				// if(ticket&&ticket.ishave){
+				// 	day.bottomInfo = '有票'
+				// 	day.dot = true
+				// }else if(ticket){
+				// 	day.dot = true
+				// }
 			    return day
 			  },
 			setDate(firstDay,isSelect){
-				if(this.ticketDay[0]&&!isSelect){
-					firstDay = new Date(this.ticketDay[0].day);
+				if(this.performDateList[0]&&!isSelect){
+					firstDay = new Date(this.performDateList[0].day);
 				}
 				// console.log('this.dateListthis.dateListthis.dateListthis.dateList',this.dateList);
 				// 前端写演出日期(今天,明天,后天)

+ 7 - 1
utils/filter.js

@@ -38,7 +38,13 @@ Vue.filter("filterToFixed", function(val) {
 
 // 订单状态
 Vue.filter("filterOrderState", function(val) {	
-	let orderList = ['待支付', '待发货', '待收货', '待评价', '己取消', '己退款', '己完成', '退款中','退款失败']
+	let orderList = ['待支付', '','超时取消', '待使用', '退款中', '己退款', '退款失败', '己使用', '己超期']
+	return orderList[val]
+});
+
+// 支付状态
+Vue.filter("filterPayState", function(val) {	
+	let orderList = ['未支付', '已支付','支付中', '支付失败', '支付退款']
 	return orderList[val]
 });