Browse Source

退款页面,对接演艺厅信息接口,演出时段接口

gcz 1 year ago
parent
commit
206ef86a84
6 changed files with 416 additions and 45 deletions
  1. 141 0
      center/refund.vue
  2. 15 0
      common/apiurl.js
  3. 21 0
      pages.json
  4. 3 2
      pages/index/index.vue
  5. 230 43
      pages/ticketlist.vue
  6. 6 0
      static/css/common.scss

+ 141 - 0
center/refund.vue

@@ -0,0 +1,141 @@
+<template>
+	<view class="pages">
+		<view class="" :style="{height: navHeight+'px' }"></view>
+		<view class="navbar-box">
+			<u-navbar title="开具发票" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="#EF1818"></u-navbar>
+		</view>
+		<view class="page-wrap">
+			<view class="box base-info">
+				<view class="title u-flex u-row-between">
+					<text>申请退款金额</text>
+					<text>¥ 68.6</text>
+				</view>
+				<view class="con">
+					(预计3个工作日内退回)
+				</view>
+			</view>
+			<view class="box reason">
+				<view class="title">退款原因(必填)</view>
+				<view class="select-reason u-flex u-row-between" @click="reasonshow=true">
+					<text>{{reason||'请选择原因'}}</text>
+					<u-icon name="arrow-down" color="#E5E5E5" size="36rpx"></u-icon>
+				</view>
+				<u-picker :show="reasonshow" :columns="reasonList" @confirm="confirmReason" @cancel="reasonshow=false"></u-picker>
+			</view>
+		</view>
+		<view class="btn-wrap">
+			<view class="inner">
+				<view class="btn">确认退款</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	import { systemInfo } from "@/mixin.js";
+	export default {
+		mixins: [systemInfo], // 使用mixin
+		data() {
+			return {
+				staticUrl:this.$commonConfig.staticUrl,
+				reason:'',
+				reasonshow:false,
+				reasonList:[
+					[
+						'选错场次',
+						'不想看了',
+					]
+				],
+				params:{
+					
+				}
+				
+			}
+		},
+		onShow() {
+		},
+		onLoad(page) {
+			console.log('page',page);
+			this.getSystemInfo();
+
+		},
+		methods: {
+			leftClick(e){
+				let pages = getCurrentPages();
+				if(pages.length==1){
+					uni.$u.route('/pages/index/index')
+				}else{
+					uni.navigateBack()
+				};
+			},
+			confirmReason(e){
+				console.log('confirmReason',e.value[0]);
+				this.reason = e.value[0];
+				this.reasonshow = false;
+			}
+
+		}
+	}
+</script>
+<style>
+	page{background-color: #F7F7F9;}
+</style>
+<style lang="scss" scoped>
+.page-wrap{
+	padding: 32rpx 16rpx;
+}
+.box{
+	margin-bottom: 24rpx;
+	background: #FFFFFF;
+	box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(221,221,221,0.5);
+	border-radius: 20rpx;
+	padding: 36rpx 24rpx;
+	.title{
+		font-size: 28rpx;
+		font-weight: 500;
+		color: #2D2D2D;
+		margin-bottom: 38rpx;
+	}
+}
+.base-info{
+	.con{
+		font-size: 24rpx;
+		font-weight: 400;
+		color: #7F7F7F;
+		text-align: right;
+	}
+}
+.reason{
+	.select-reason{
+		height: 64rpx;
+		line-height: 64rpx;
+		border-radius: 8rpx;
+		border: 2rpx solid #E5E5E5;
+		padding: 0 24rpx;
+		font-size: 24rpx;
+		font-weight: 400;
+		color: #363636;
+	}
+}
+.btn-wrap{
+	height: 92rpx;
+	.inner{
+		position: fixed;
+		left: 0;
+		right: 0;
+		bottom: 66rpx;
+	}
+	.btn{
+		height: 92rpx;
+		line-height: 92rpx;
+		width:80%;
+		margin: 0 auto;
+		background: linear-gradient(90deg, #FF7878 0%, #ED0000 100%);
+		border-radius: 46rpx;
+		font-size: 28rpx;
+		font-weight: 400;
+		color: #FFFFFF;
+		text-align: center;
+	}
+}
+</style>

+ 15 - 0
common/apiurl.js

@@ -62,6 +62,21 @@ const apiurl = {
 		url: '/merchant/merchantPerform/performQrcode',
 		type: 'get'
 	},
+	// 获取演艺厅列表
+	performSell: {
+		url: '/goods/performInfo/performSell',
+		type: 'get'
+	},
+	// 获取节目演出时段
+	getAuditoriumTimes: {
+		url: '/merchant/merchantTheatreAuditorium/selectTimes',
+		type: 'get'
+	},
+	// 节目详情
+	performInfo: {
+		url: '/goods/performInfo/selectById',
+		type: 'get'
+	},
 	
 	
 	

+ 21 - 0
pages.json

@@ -48,6 +48,13 @@
 				"navigationBarTitleText": "资讯详情",
 				"navigationStyle": "custom"
 			}
+		},
+		{
+			"path": "pages/actors",
+			"style": {
+				"navigationBarTitleText": "演员列表",
+				"navigationStyle": "custom"
+			}
 		}
 	],
 	"subPackages": [
@@ -95,6 +102,20 @@
 						"navigationBarTitleText": "订单",
 						"navigationStyle": "custom"
 					}
+				},
+				{
+					"path": "orderdetails",
+					"style": {
+						"navigationBarTitleText": "订单详情",
+						"navigationStyle": "custom"
+					}
+				},
+				{
+					"path": "refund",
+					"style": {
+						"navigationBarTitleText": "申请退款",
+						"navigationStyle": "custom"
+					}
 				}
 			]
 		}

+ 3 - 2
pages/index/index.vue

@@ -31,6 +31,7 @@
 					<view class="programme-wrap">
 						<view class="programme">
 							<image class="img" :src="staticUrl+'/img/programme-01.png'" ></image>
+							<!-- <image class="img" :src="item.showImg" ></image> -->
 							<view class="text u-flex u-row-between">
 								<view class="left">
 									<view class="name">{{item.name}}</view>
@@ -38,9 +39,9 @@
 								</view>
 								<view class="btn" @click="bookticket(item)">立即预定</view>
 							</view>
-							<view class="share" @click="getPoster(item)">
+						<!-- 	<view class="share" @click="getPoster(item)">
 								<image class="icon" :src="staticUrl+'/img/share-ico.png'" ></image>
-							</view>
+							</view> -->
 						</view>
 					</view>
 				</swiper-item>

+ 230 - 43
pages/ticketlist.vue

@@ -4,15 +4,16 @@
 			<u-navbar title="订单详情" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#fff'}" leftIconColor="#fff" bgColor="transparent"></u-navbar>
 		</view>
 		<view class="banner">
-			<image class="img" :src="staticUrl+'/img/bookticket-banner.png'" alt="">
+			<!-- <image class="img" :src="staticUrl+'/img/bookticket-banner.png'" alt=""> -->
+			<image class="img" :src="theatre.showImg" alt="">
 			<view class="content">
-				<view class="share">
+				<view class="share" @click="openShare(item)">
 					<image class="icon" :src="staticUrl+'/img/share-ico.png'" ></image>
 				</view>
-				<view class="name">《伟大转折》</view>
+				<view class="name">{{theatre.name}}</view>
 				<view class="addr u-flex u-row-between">
-					<view class="text">演出地址:遵义市《伟大转折》演艺中心</view>
-					<u-icon name="arrow-right" color="#ffffff" size="36rpx"></u-icon>
+					<view class="text">{{theatre.address}}</view>
+					<u-icon name="arrow-right" color="#ffffff" size="36rpx" @click="goMap"></u-icon>
 				</view>
 			</view>
 		</view>
@@ -24,13 +25,21 @@
 					lineColor="#ED0000" 
 					lineWidth="82rpx"
 					:activeStyle="{color: '#2D2D2D',fontWeight: 'bold'}"
-					itemStyle="width:50%; height: 46px;box-sizing:border-box"
+					itemStyle="width:33%; height: 46px;box-sizing:border-box"
 				>
 				</u-tabs>
 			</view>
 		</view>
 		<view class="page-wrap">
 			<view class="ticket" v-if="tabsIndex==0">
+				<view class="date-block auditorium">
+					<view class="title">演出厅</view>
+					<view class="date-list u-flex u-flex-wrap">
+						<view class="date-item" :class="{active:auditoriumIndex==index}" @click="auditoriumClick(index)" v-for="(date,index) in auditoriumList" :key="index">
+							<view class="name">{{ date.name }}</view>
+						</view>
+					</view>
+				</view>
 				<view class="date-block">
 					<view class="title">游玩日期</view>
 					<view class="date-list u-flex">
@@ -51,26 +60,30 @@
 					<view class="title">演出场次</view>
 					<view class="session">
 						<view class="session-item" :class="{active:sessionIndex==index}" @click="sessionClick(index)" v-for="(date,index) in sessionList" :key="index">
-							{{ date.session }}
+							{{ $u.timeFormat(date.performTimeStart, 'hh:MM') }} - {{ $u.timeFormat(date.performTimeEnd, 'hh:MM') }}
 						</view>
 					</view>
+					<view class="empty" v-if="auditoriumList>=1&&sessionList.length<1">
+						当前日期暂无演出场次,请重新选择
+					</view>
 				</view>
 				<view class="date-block ticket-type">
 					<view class="title">门票</view>
 					<view class="type-item" :class="{active:sessionIndex==index}" v-for="(item,index) in  ticketTypeList" :key="index">
 						<view class="name-price u-flex u-row-between">
-							<view class="name">{{item.name}}</view>
-							<view class="prices">¥ {{item.prices}}</view>
+							<view class="name">{{item.goodsName}}</view>
+							<view class="prices">¥ {{item.salePrice}}</view>
 						</view>
 						<view class="ishave">
-							<text class="text">有票</text>
+							<text class="text">{{(item.quantity>0&&sessionList.length>=1)?'有票':'无票'}}</text>
 						</view>
 						<view class="bottom u-flex u-row-between">
 							<view class="left u-flex">
 								购票须知
 								<u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon>
 							</view>
-							<view class="btn" @click="book(item)">预定</view>
+							<view class="btn" @click="book(item)" v-if="item.quantity>0&&sessionList.length>=1">预定</view>
+							<view class="btn disabled" v-else>暂无余票</view>
 						</view>
 					</view>
 				</view>
@@ -80,30 +93,34 @@
 				<view class="details-block">
 					<view class="title">剧情简介</view>
 					<view class="intro">
-						剧情简介剧情简介剧情简介剧情简介剧情简介
+						<u-parse :content="performInfo.performSnapshot"></u-parse>
 					</view>
 				</view>
 				<view class="details-block actors">
 					<view class="title u-flex u-row-between">
 						演职人员
-						<view class="right u-flex">
-							<text>全部20人</text>
+						<view class="right u-flex" @click="$u.route('pages/actors')">
+							<text>更多</text>
 							<u-icon name="arrow-right" color="#7F7F7F" size="24rpx"></u-icon>
 						</view>
 					</view>
 					<view class="actor-list">
 						<u-scroll-list :indicator="false">
 							<view class="item" v-for="(item, index) in actorsArr" :key="index">
-								<image class="img" :src="item.imgUrl"></image>
+								<image class="img" :src="item.performerHead"></image>
 								<view class="text">
-									<view class="name">{{item.name}}</view>
-									<view class="role u-line-1">{{item.role}}</view>
+									<view class="name">{{item.performerName}}</view>
+									<view class="role u-line-1">{{item.performerRole}}</view>
 								</view>
 							</view>
 						</u-scroll-list>
+						<u-empty text="暂无" v-if="actorsArr.length<1"></u-empty>
 					</view>
 				</view>
 			</view>
+			<view class="viewingTips"  v-if="tabsIndex==2">
+				
+			</view>
 		</view>
 		<u-calendar
 			ref="calendar"
@@ -113,6 +130,29 @@
 			@close="closeCalendar"
 			@confirm="confirmCalendar">
 		</u-calendar>
+		<!-- 分享选择弹出内容 -->
+		<view class="share-option" :class="{shareShow:shareShow}">
+			<view class="overlay" v-if="shareShow"  @click="shareShow=false"></view>
+			<button class="share-option-item wx-share" data-name="shareBtn" open-type="share">
+				发送给朋友
+			</button>
+			<view class="share-option-item" @click="getPoster">生成海报</view>
+			<view class="share-option-item" @click="shareShow=false">取消</view>
+		</view>
+		<u-popup :show="posterShow" @close="posterShow=false" ref="uni-popup">
+			<view class="poster-wrap u-flex u-col-center">
+				<view class="poster-inner">
+					<view class="close-wrap" @click="posterShow=false">
+						<u-icon name="close-circle" color="#fff" size="56rpx"></u-icon>
+					</view>
+					<view class="poster" id="poster" ref="poster" >
+						<u--image :showLoading="true" :src="posterSrc" width="100%" height="65vh" mode="aspectFit"></u--image>
+					</view>
+					<!-- savePoster -->
+					<view class="poster-btn" @click="saveImage">保存图片</view>
+				</view>
+			</view>
+		</u-popup>
 	</view>
 </template>
 
@@ -129,44 +169,42 @@
 		mixins:[systemInfo],
 		data() {
 			return {
+				performId:'',
 				staticUrl:this.$commonConfig.staticUrl,
 				tabsArr:[
 					{name:'票务购买'},
-					{name:'演出详情'}
+					{name:'演出详情'},
+					{name:'观影须知'}
 				],
+				theatre:{},
 				tabsIndex:0,
 				dateList:[],
 				dateIndex:0,
 				calendarShow:false,//日历
 				maxDate:`${year}-${month}-${date + 10}`,
-				sessionList:[
-					{session:'10:00-11:00'},
-					{session:'10:00-11:00'},
-					{session:'10:00-11:00'},
-					{session:'10:00-11:00'},
-					{session:'10:00-11:00'},
-				],
+				auditoriumList:[],//演艺厅
+				auditoriumIndex:0,
+				sessionList:[],//演出场次
 				sessionIndex:0,
-				ticketTypeList:[
-					{name:'成人票',prices:'15'},
-					{name:'成人票',prices:'15'},
-					{name:'成人票',prices:'15'},
-				],
-				actorsArr:[
-					{name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=1'},
-					{name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=2'},
-					{name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=3'},
-					{name:'张三',role:'导演',imgUrl:'https://unsplash.it/160/200?id=4'},
-				]
+				ticketTypeList:[],//门票
+				actorsArr:[],
+				shareShow:false,
+				posterShow:false,
+				posterSrc:'',
+				performInfo:{},//节目详情
 				
 			}
 		},
 		onShow() {
 		},
-		onLoad() {
+		onLoad(page) {
+			console.log('page',page);
+			this.performId = page.id;
+			this.getPerformData();
 			// this.getSystemInfo();
 			let today = new Date();
 			this.setDate(today);
+			this.getPerformInfo();
 
 		},
 		methods: {
@@ -178,6 +216,44 @@
 					uni.navigateBack()
 				};
 			},
+			getPerformData(){
+				this.$u.api.performSell({performId:this.performId}).then(res=>{
+					// console.log('getPerformData',res.data);
+					this.theatre =  res.data.theatreList[0];
+					this.auditoriumList  = res.data.theatreList[0].auditoriumList;
+					this.ticketTypeList = res.data.goodsList;
+					this.getTimes()
+					console.log('auditoriumList',this.auditoriumList);
+				}).catch(err=>{
+					console.log('getPoster',err);
+				})
+			},
+			getPerformInfo(){
+				this.$u.api.performInfo({id:this.performId}).then(res=>{
+					console.log('getPerformInfo',res.data);
+					this.performInfo =  res.data;
+					this.actorsArr = res.data.performerList;
+				}).catch(err=>{
+					console.log('getPerformInfo',err);
+				})
+			},
+			getTimes(){
+				let auditoriumId= this.auditoriumList[this.auditoriumIndex]?.id;
+				if(!auditoriumId){return}
+				let dateOBJ = this.dateList[this.dateIndex];
+				let param = {
+					auditoriumId:auditoriumId,//演艺厅ID(演艺厅列表)
+					performId:this.performId,
+					date:`${dateOBJ.year}-${dateOBJ.month}-${dateOBJ.day}`
+				};
+				// console.log('param',param);
+				this.$u.api.getAuditoriumTimes(param).then(res=>{
+					console.log('getTimes',res.data);
+					this.sessionList = res.data.list;
+				}).catch(err=>{
+					console.log('getPoster',err);
+				})
+			},
 			setDate(firstDay){
 				let today = firstDay;
 				let tomorrow = new Date();
@@ -190,9 +266,16 @@
 				  { year: tomorrow.getFullYear(), month: tomorrow.getMonth() + 1, day: tomorrow.getDate() ,name:'明天'},
 				  { year: afterTomorrow.getFullYear(), month: afterTomorrow.getMonth() + 1, day: afterTomorrow.getDate(),name:'后天' }
 				];
+					
+				this.getTimes()
+				
 			},
 			dateClick(index){
 				this.dateIndex = index;
+				this.getTimes()
+			},
+			auditoriumClick(index){
+				this.auditoriumIndex = index;
 			},
 			confirmCalendar(e){
 				console.log('confirmCalendar',e);
@@ -217,7 +300,99 @@
 				uni.$u.route('pages/bookticket',{
 					id:item.id
 				})
-			}
+			},
+			openShare(){
+				this.shareShow = true;
+			},
+			// 海报相关开始
+			getPoster(item){
+				this.posterShow = true;
+				this.shareShow = false;
+				this.$u.api.performQrcode({performId:this.performId}).then(res=>{
+					this.posterSrc = res.data.imageUrl;
+					// console.log('getPoster',res.data);
+				}).catch(err=>{
+					console.log('getPoster',err);
+				})
+			},
+			saveImage() {
+				let that = this;
+					uni.showLoading({
+						title: '保存中'
+					});
+			      uni.downloadFile({
+			        url: this.posterSrc,
+			        success(res) {
+			          if (res.statusCode === 200) {
+			            uni.saveImageToPhotosAlbum({
+			              filePath: res.tempFilePath,
+			              success() {
+			                uni.showToast({
+			                  title: '保存到相册成功',
+			                  icon: 'success'
+			                });
+			              },
+			              fail(err) {
+							  console.log('保存图片失败',err);
+			                if (err.errMsg === 'saveImageToPhotosAlbum:fail auth deny') {
+								uni.getSetting({
+								  success(res) {
+									if (!res.authSetting['scope.writePhotosAlbum']) {
+									  uni.showModal({
+										title: '提示',
+										content: '您还没有授权访问相册,请前往设置页面打开权限。',
+										confirmText: '去设置',
+										success(res) {
+										  if (res.confirm) {
+											uni.openSetting();
+										  }
+										}
+									  });
+									} else {
+									  uni.showToast({
+										title: '保存图片失败',
+										icon: 'none'
+									  });
+									}
+								  }
+								});
+							  } else {
+								uni.showToast({
+								  title: '保存图片失败',
+								  icon: 'none'
+								});
+							}
+			              },
+						  complete() {
+						  	uni.hideLoading();
+							that.posterShow = false;
+						  }
+			            });
+			          } else {
+			            uni.showToast({
+			              title: '下载图片失败',
+			              icon: 'none'
+			            });
+			          }
+			        },
+			        fail() {
+			          uni.showToast({
+			            title: '下载图片失败',
+			            icon: 'none'
+			          });
+			        }
+			      });
+			    },
+			// 海报相关结束
+			goMap(){
+				uni.openLocation({
+				  latitude:Number(this.theatre.latitude),	//维度
+				  longitude: Number(this.theatre.longitude), //经度
+				  name:  this.theatre.name,	//目的地定位名称
+				  scale: 15,	//缩放比例
+				  address: this.theatre.address	//导航详细地址
+				})
+			},
 
 		}
 	}
@@ -292,12 +467,21 @@
 	margin-bottom: 64rpx;
 }
 .title{
-		font-size: 32rpx;
-		font-weight: bold;
-		color: #2D2D2D;
-		line-height: 48rpx;
-		margin-bottom: 38rpx;
+	font-size: 32rpx;
+	font-weight: bold;
+	color: #2D2D2D;
+	line-height: 48rpx;
+	margin-bottom: 38rpx;
+}
+.session-wrap{
+	.empty{
+		background-color: #636363;
+		color: #979797;
+		border-radius: 8rpx;
+		padding: 24rpx;
+		text-align: center;
 	}
+}
 .session{
 	 display: grid;
 	 grid-template-columns: repeat(3, 1fr);
@@ -363,6 +547,9 @@
 				font-size: 28rpx;
 				font-weight: 500;
 				color: #FFFFFF;
+				&.disabled{
+					background: #979797;
+				}
 			}
 		}
 	}

+ 6 - 0
static/css/common.scss

@@ -150,6 +150,12 @@ $pagegap:32rpx;
 		}
 	}
 }
+.date-block.auditorium{
+	.name{
+		margin-bottom: 0;
+		padding: 34rpx 0;
+	}
+}
 // 分享 海报
 .share-option{
 	transform: translateY(100%);