Browse Source

选择区域页面,个人中心页面修改

gcz 1 year ago
parent
commit
eb4d2a52f8
7 changed files with 203 additions and 11 deletions
  1. 7 1
      center/center.vue
  2. 1 0
      common/request.js
  3. 14 0
      pages.json
  4. 21 7
      pages/bookticket.vue
  5. 150 0
      pages/chosenposition.vue
  6. 9 2
      pages/ticketlist.vue
  7. 1 1
      static/css/common.scss

+ 7 - 1
center/center.vue

@@ -74,7 +74,8 @@
 				avatar:this.$commonConfig.staticUrl+'/img/avatar.png',
 				memberInfo:{},
 				tools:[
-					{name:'领券中心',url:'/center/mycoupon',ico:this.$commonConfig.staticUrl+'/img/center-coupon.png',checkauth:false},
+					{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'},
 				]
@@ -95,6 +96,10 @@
 					this.memberInfo = res.data;
 					this.avatar =  res.data.avatar;
 					this.$u.vuex('vuex_member_info', res.data);
+					const isExist = this.tools.some(item => item.name === '实名认证');
+					if(!res.data.isAuth&&!isExist){
+						this.tools.push({name:'实名认证',url:'center/factorauth',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true})
+					}
 					// console.log('memberInfo',this.memberInfo);
 					}).catch(err=>{
 					console.log('memberInfo',err.data);
@@ -125,6 +130,7 @@
 				if ('chat' in item) {
 					return
 				}
+				console.log('item.checkauth',item.checkauth);
 				if(item.checkauth){
 					this.checkauth(item.url)
 				}else{

+ 1 - 0
common/request.js

@@ -92,6 +92,7 @@ module.exports = (vm) => {
 			  },
 			  complete() {
 			  	showModal = false
+				uni.$u.vuex('vuex_member_info', {});
 			  }
 			})
 

+ 14 - 0
pages.json

@@ -35,6 +35,13 @@
 				"navigationStyle": "custom"
 			}
 		},
+		{
+			"path": "pages/chosenposition",
+			"style": {
+				"navigationBarTitleText": "选择区域",
+				"navigationStyle": "custom"
+			}
+		},
 		{
 			"path": "pages/news",
 			"style": {
@@ -75,6 +82,13 @@
 						"navigationStyle": "custom"
 					}
 				},
+				{
+					"path": "viewrecord",
+					"style": {
+						"navigationBarTitleText": "观看记录",
+						"navigationStyle": "custom"
+					}
+				},
 				{
 					"path": "memberinfo",
 					"style": {

+ 21 - 7
pages/bookticket.vue

@@ -9,14 +9,14 @@
 				<view class="up u-flex">
 					<image class="img" :src="staticUrl+'/img/bookticket-banner.png'" alt="">
 					<view class="text">
-						<view class="name text-item">《伟大转折》-【成人票】</view>
+						<view class="name text-item">{{performInfo.name}}-【成人票】</view>
 						<view class="time text-item">今天  10:00-11:00</view>
 						<view class="num text-item">成人票 x1</view>
-						<view class="position text-item">《伟大转折》演艺中心 x1</view>
-						<view class="addr u-flex u-row-between">
+						<view class="position text-item">{{performInfo.name}}</view>
+					<!-- 	<view class="addr u-flex u-row-between">
 							<view class="u-line-1">地址:遵义市《伟大转折》演艺中心</view>
 							<u-icon name="arrow-right" color="#2D2D2D" size="36rpx"></u-icon>
-						</view>
+						</view> -->
 					</view>
 				</view>
 				<view class="down">
@@ -32,8 +32,9 @@
 					<!-- <text>用于入园身份验证</text> -->
 				</view>
 				<view class="" v-if="vuex_member_info.isAuth">
-					<view class="item">昵称:{{vuex_member_info.name}}</view>
+					<view class="item">姓名:{{vuex_member_info.name}}</view>
 					<view class="item">手机号:{{vuex_member_info.mobile}}</view>
+					<view class="item">身份证:{{vuex_member_info.id|maskID}}</view>
 				</view>
 				<view class="un-auth" v-else @click="$u.route('center/factorauth',{from:'bookticket'})">
 					请先<text style="color: #ED0000;">实名认证</text>
@@ -146,6 +147,8 @@
 		mixins:[systemInfo],
 		data() {
 			return {
+				performId:'',
+				performInfo:{},
 				cansubmit:true,
 				staticUrl:this.$commonConfig.staticUrl,
 				visitors:[],//游客
@@ -177,9 +180,11 @@
 		},
 		onShow() {
 		},
-		onLoad() {
+		onLoad(page) {
+			console.log('page',page);
+			this.performId = page.performId;
 			this.getSystemInfo();
-
+			this.getPerformInfo();
 		},
 		methods: {
 			leftClick(e){
@@ -190,6 +195,15 @@
 					uni.navigateBack()
 				};
 			},
+			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);
+				})
+			},
 			confirmVisitor(){
 				let that = this;
 				// console.log('selectedVisitor',this.selectedVisitor);

+ 150 - 0
pages/chosenposition.vue

@@ -0,0 +1,150 @@
+<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="base-info">
+				<view class="name">{{params.performName}}</view>
+				<view class="time u-flex">
+					<view class="title">{{params.day|checkDate}}</view>
+					<text>{{params.day}} {{params.time}}</text>
+				</view>
+			</view>
+			<view class="position-wrap u-flex u-row-center">
+				<view class="u-flex item" :class="{active:positionIndex==index}" @click="positionClick(index)" v-for="(item,index) in positionArr" :key="index">
+					<image class="icon" :src="item.icon" ></image>
+					<text>¥{{item.price}}</text>
+				</view>
+			</view>
+			<image class="position-img" :src="staticUrl+'/img/position-img.png'" mode="widthFix"></image>
+			<view class="btn" @click="book">确定区域</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	import { systemInfo } from "@/mixin.js";
+	export default {
+		mixins: [systemInfo],
+		data() {
+			return {
+				staticUrl:this.$commonConfig.staticUrl,
+				params:{
+					day:'',
+					goodsId:'',
+					performId:'',
+					performName:'',
+					time:'',
+				},
+				positionArr:[
+					{price:120,icon:this.$commonConfig.staticUrl+'/img/position-1.png'},
+					{price:360,icon:this.$commonConfig.staticUrl+'/img/position-2.png'},
+					{price:240,icon:this.$commonConfig.staticUrl+'/img/position-3.png'}
+				],
+				positionIndex:0
+			}
+		},
+		onShow() {
+		},
+		onLoad(page) {
+			console.log('page',page);
+			this.params.day = page.day;
+			this.params.goodsId = page.goodsId;
+			this.params.performId = page.performId;
+			this.params.performName = page.performName;
+			this.params.time = page.time;
+			this.getSystemInfo();
+
+		},
+		methods: {
+			leftClick(e){
+				let pages = getCurrentPages();
+				if(pages.length==1){
+					uni.$u.route('/pages/index/index')
+				}else{
+					uni.navigateBack()
+				};
+			},
+			book(){
+				this.params.price = this.positionArr[this.positionIndex].price;
+				uni.$u.route('pages/bookticket',this.params)
+			},
+			positionClick(index){
+				this.positionIndex = index;
+			}
+
+		}
+	}
+</script>
+<style>
+page{
+	background-color: #F7F7F9;
+}
+</style>
+<style lang="scss" scoped>
+.page-wrap{
+	padding-top: 36rpx;
+}
+.base-info{
+	background: #FFFFFF;
+	box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(221,221,221,0.4);
+	border-radius: 16rpx;
+	padding: 38rpx 28rpx;
+	margin-bottom: 54rpx;
+	.name{
+		font-size: 28rpx;
+		font-weight: bold;
+		color: #2D2D2D;
+		line-height: 42rpx;
+		margin-bottom: 24rpx;
+	}
+	.time{
+		font-size: 24rpx;
+		font-weight: 400;
+		color: #7F7F7F;
+		.title{
+			font-size: 24rpx;
+			font-weight: 500;
+			color: #F01414;
+			margin-right: 26rpx;
+		}
+	}
+}
+.position-wrap{
+	margin-bottom: 80rpx;
+	.item{
+		padding: 20rpx 24rpx 14rpx;
+		border-radius: 8rpx;
+		border: 2rpx solid #D9D9D9;
+		margin: 0 24rpx;
+		font-size: 24rpx;
+		font-weight: 500;
+		color: #EF1D1E;
+		.icon{
+			display: block;
+			width: 36rpx;
+			height: 36rpx;
+			margin-right: 20rpx;
+		}
+		&.active{
+			border-color: #EF1D1E;
+		}
+	}
+}
+.position-img{
+	width: 100%;
+	margin-bottom: 40rpx;
+}
+.btn{
+	height: 92rpx;
+	line-height: 92rpx;
+	background: linear-gradient(90deg, #FF7878 0%, #ED0000 100%);
+	border-radius: 46rpx;
+	text-align: center;
+	font-size: 28rpx;
+	font-weight: 400;
+	color: #FFFFFF;
+}
+</style>

+ 9 - 2
pages/ticketlist.vue

@@ -309,8 +309,15 @@
 			},
 			book(item){
 				console.log('book',item);
-				uni.$u.route('pages/bookticket',{
-					id:item.id
+				console.log('performInfo',this.performInfo);
+				console.log('this.dateList[this.dateIndex]',this.dateList[this.dateIndex]);
+				let dateOBJ = this.dateList[this.dateIndex];
+				uni.$u.route('pages/chosenposition',{
+					goodsId:item.id,
+					performId:this.performId,
+					performName:this.performInfo.name,
+					day:`${dateOBJ.year}-${dateOBJ.month}-${dateOBJ.day}`,
+					time:this.sessionList[this.sessionIndex]
 				})
 			},
 			openShare(){

+ 1 - 1
static/css/common.scss

@@ -279,7 +279,7 @@ $pagegap:32rpx;
 		margin-top: 40rpx;
 		font-size: 32rpx;
 		font-weight: 600;
-		background: linear-gradient(90deg, #00DC84 0%, #00A447 100%);
+		background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
 	}
 }
 // 分享 海报