瀏覽代碼

个人中心接口对接(个人信息,信息修改,实名认证),下单流程预处理

gcz 1 年之前
父節點
當前提交
2a2282ed4f
共有 8 個文件被更改,包括 66 次插入39 次删除
  1. 14 4
      center/center.vue
  2. 1 0
      center/factorauth.vue
  3. 6 4
      center/memberinfo.vue
  4. 8 8
      common/apiurl.js
  5. 22 15
      pages/bookticket.vue
  6. 8 5
      pages/chosenposition.vue
  7. 6 2
      pages/ticketlist.vue
  8. 1 1
      utils/uploadImg.js

+ 14 - 4
center/center.vue

@@ -10,7 +10,7 @@
 					<view class="left u-flex">
 						<u-avatar :src="avatar||staticUrl+'/img/avatar.png'" size="140rpx"></u-avatar>
 						<view class="info">
-							<view class="name ellipsis-1">{{vuex_member_info.name}}</view>
+							<view class="name ellipsis-1">{{vuex_member_info.name||vuex_member_info.nickName}}</view>
 							<view class="mobile u-flex">
 								<text class="mobile">{{vuex_member_info.mobile|hidePhoneNumber}}</text>
 							</view>
@@ -37,14 +37,14 @@
 					  v-for="(item,index) in tools" 
 					  @click="toolsClick(item)"
 					  :key="index">
-					  <view class="tool-item u-flex u-row-between" v-if="!item.share">
+					  <view class="tool-item u-flex u-row-between" v-if="!item.chat">
 					  	<view class="left u-flex">
 					  		<u-icon :name="item.ico" color="#333333" size="55rpx"></u-icon>
 							<text class="name">{{item.name}}</text>
 					  	</view>
 					  	<u-icon name="arrow-right" color="#ddd" size="40rpx"></u-icon>
 					  </view>
-					  <view class="tool-item" v-if="item.share==1">
+					  <view class="tool-item" v-if="item.chat==1">
 					  	<button class="button-item u-flex u-row-between" type="default" open-type="contact">
 							<view class="left u-flex">
 								<u-icon :name="item.ico" color="#333333" size="55rpx"></u-icon>
@@ -77,7 +77,8 @@
 					{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:'客服热线',url:'',ico:this.$commonConfig.staticUrl+'/img/center-call.png',checkauth:true,phone:'13682266542'},
+					{name:'在线客服',chat:'1',ico:this.$commonConfig.staticUrl+'/img/center-call.png'},
 				]
 			}
 		},
@@ -108,6 +109,15 @@
 			toolsClick(item){
 				let that = this;
 				console.log('item',item);
+				
+				if(item.name!=='在线客服'){
+					uni.showToast({
+						title:'开发中',
+						icon:"none"
+					})
+					return
+				}
+				
 				if ('phone' in item) {
 					if(!item.phone){
 						uni.showToast({

+ 1 - 0
center/factorauth.vue

@@ -121,6 +121,7 @@
 						icon:'success'
 					})
 					setTimeout(()=>{
+						console.log('this.backUrl',this.backUrl);
 						uni.reLaunch({url: this.backUrl});
 					},2000)
 					// console.log('memberInfo',this.memberInfo);

+ 6 - 4
center/memberinfo.vue

@@ -29,7 +29,8 @@
 						></u-upload>
 					</view>
 				</view>
-				<u-cell title="昵称" @click="nameShow=true" :value="memberInfo.name" :border="true"></u-cell>
+				<u-cell title="姓名" v-if="memberInfo.isAuth==1" @click="$u.toast('不允许修改')" :value="vuex_member_info.name" :border="true"></u-cell>
+				<u-cell title="昵称" @click="nameShow=true" :value="vuex_member_info.nickName" :border="true"></u-cell>
 				<!-- <u-cell title="性别" @click="handleChangeSex" :value="memberInfo.sex|filterSex"></u-cell> -->
 				<!-- <u-cell title="生日" :value="memberInfo.birthdayTime||'未设置'" @click="handleChangeBirthday" :isLink="true"></u-cell> -->
 				<!-- <u-cell title="会员等级" :value="memberInfo.levelName"></u-cell> -->
@@ -115,6 +116,7 @@
 					this.memberInfo = res.data;
 					this.avatar =  res.data.avatar;
 					// console.log('memberInfo',this.memberInfo);
+					this.$u.vuex('vuex_member_info', res.data);
 					}).catch(err=>{
 					console.log('memberInfo',err);
 				})
@@ -176,7 +178,7 @@
 					params.avatar = this.avatarUrl;
 				}else if(type == 'birthday'){
 					params.birthdayTime = this.birthday;
-				}else if(type == 'name'){
+				}else if(type == 'nickName'){
 					if(!this.tempName){
 						uni.showToast({
 							title:'请输入昵称',
@@ -184,7 +186,7 @@
 						})
 						return
 					}
-					params.name = this.tempName;
+					params.nickName = this.tempName;
 				}else if(type == 'sex'){
 					params.sex = this.sex;
 				}
@@ -196,7 +198,7 @@
 				})
 			},
 			changeName(){
-				this.updateMemberInfo('name');
+				this.updateMemberInfo('nickName');
 				console.log('memberInfo',this.memberInfo);
 			},
 			sexSelect(e){

+ 8 - 8
common/apiurl.js

@@ -24,13 +24,18 @@ const apiurl = {
 	},
 	// 查询登录用户信息
 	memberInfo: {
-		url: '/member/memberInfo/getInfoById',
+		url: '/member/memberInfo/getMemberInfo',
 		type: 'get'
 	},
 	// 修改用户信息
 	updateMemberInfo: {
-		url: '/memberInfo/update',
-		type: 'put'
+		url: '/member/memberInfo/update',
+		type: 'post'
+	},
+	// 实名认证
+	factorAuth: {
+		url: '/member/memberInfo/realAuth',
+		type: 'post'
 	},
 	// 获取协议
 	getAgreement: {
@@ -359,11 +364,6 @@ const apiurl = {
 		url: '/memberInfo/selectBalanceLogList',
 		type: 'get'
 	},
-	// 实名认证
-	factorAuth: {
-		url: '/memberInfo/factorAuth',
-		type: 'post'
-	},
 	// 注册协议
 	getRegistinfoByName: {
 		url: '/memberCreditDesc/getRegistinfoByName',

+ 22 - 15
pages/bookticket.vue

@@ -7,12 +7,13 @@
 		<view class="page-wrap">
 			<view class="base-info">
 				<view class="up u-flex">
-					<image class="img" :src="staticUrl+'/img/bookticket-banner.png'" alt="">
+					<image class="img" :src="performInfo.showImg" alt="">
 					<view class="text">
 						<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">{{performInfo.name}}</view>
+						<view class="time text-item">日期  {{pageData.day}}</view>
+						<view class="time text-item">场次  {{pageData.time}}</view>
+						<view class="num text-item">成人票 / {{pageData.positionName}}</view>
+						<!-- <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>
@@ -22,7 +23,7 @@
 				<view class="down">
 					<view class="num-wrap u-flex u-row-between">
 						<view class="title">选购数量</view>
-						<view class="num">1</view>
+						<view class="num">{{totalVisitor}}</view>
 					</view>
 				</view>
 			</view>
@@ -33,7 +34,7 @@
 				</view>
 				<view class="" v-if="vuex_member_info.isAuth">
 					<view class="item">姓名:{{vuex_member_info.name}}</view>
-					<view class="item">手机号:{{vuex_member_info.mobile}}</view>
+					<view class="item">手机号:{{vuex_member_info.mobile|hidePhoneNumber}}</view>
 					<view class="item">身份证:{{vuex_member_info.id|maskID}}</view>
 				</view>
 				<view class="un-auth" v-else @click="$u.route('center/factorauth',{from:'bookticket'})">
@@ -133,8 +134,8 @@
 					</view>
 				</view>
 				<view class="right">
-					<view class="btn active" v-if="totalPrice>0&&cansubmit" @click="submitorder">去结算</view>
-					<view class="btn" v-else>提交订单</view>
+					<view class="btn active" v-if="totalPrice>0&&cansubmit&&vuex_member_info.isAuth" @click="submitorder">立即支付</view>
+					<view class="btn" v-else>立即支付</view>
 				</view>
 			</view>
 		</view>
@@ -149,6 +150,7 @@
 			return {
 				performId:'',
 				performInfo:{},
+				pageData:{},//上个页面传过来的数据
 				cansubmit:true,
 				staticUrl:this.$commonConfig.staticUrl,
 				visitors:[],//游客
@@ -159,6 +161,7 @@
 					{id:'3',name:'王五',sfz:'522501202112037605'},
 				],//游客列表
 				selectedVisitor:[],//选中的游客
+				params:{},//要提交的数据
 				
 			}
 		},
@@ -167,21 +170,24 @@
 			  let that = this;
 			  return this.visitors.reduce((total, item) => {
 				let price = null;
-				// if(that.vuex_member_info.priceType>1){
-				// 	price = item.vipPrice
-				// }else{
-				// 	price = item.salePrice
-				// }
-				price = item.levelPrice
-			  total += price * item.quantity;
+				price = Number(that.pageData.price);
+			    total += price;
 				return total;
 			  }, 0).toFixed(2);
 			},
+			totalVisitor() {
+			  let that = this;
+			  return this.visitors.reduce((total, item) => {
+			    total += 1;
+				return total;
+			  },0);
+			},
 		},
 		onShow() {
 		},
 		onLoad(page) {
 			console.log('page',page);
+			this.pageData = page;
 			this.performId = page.performId;
 			this.getSystemInfo();
 			this.getPerformInfo();
@@ -230,6 +236,7 @@
 			},
 			submitorder(){
 				this.cansubmit = false;
+				console.log('params',this.params);
 			},
 
 		}

+ 8 - 5
pages/chosenposition.vue

@@ -9,7 +9,7 @@
 				<view class="name">{{params.performName}}</view>
 				<view class="time u-flex">
 					<view class="title">{{params.day|checkDate}}</view>
-					<text>{{params.day}} {{params.time}}</text>
+					<text>{{$u.timeFormat(pageData.performTimeStart, 'hh:MM')}} - {{$u.timeFormat(pageData.performTimeEnd, 'hh:MM')}}</text>
 				</view>
 			</view>
 			<view class="position-wrap u-flex u-row-center">
@@ -39,17 +39,19 @@
 					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'}
+					{price:120,positionName:'vip区',icon:this.$commonConfig.staticUrl+'/img/position-1.png'},
+					{price:360,positionName:'vip区',icon:this.$commonConfig.staticUrl+'/img/position-2.png'},
+					{price:240,positionName:'vip区',icon:this.$commonConfig.staticUrl+'/img/position-3.png'}
 				],
-				positionIndex:0
+				positionIndex:0,
+				pageData:{},
 			}
 		},
 		onShow() {
 		},
 		onLoad(page) {
 			console.log('page',page);
+			this.pageData = page;
 			this.params.day = page.day;
 			this.params.goodsId = page.goodsId;
 			this.params.performId = page.performId;
@@ -69,6 +71,7 @@
 			},
 			book(){
 				this.params.price = this.positionArr[this.positionIndex].price;
+				this.params.positionName = this.positionArr[this.positionIndex].positionName;
 				uni.$u.route('pages/bookticket',this.params)
 			},
 			positionClick(index){

+ 6 - 2
pages/ticketlist.vue

@@ -310,14 +310,18 @@
 			book(item){
 				console.log('book',item);
 				console.log('performInfo',this.performInfo);
-				console.log('this.dateList[this.dateIndex]',this.dateList[this.dateIndex]);
+				let session = this.sessionList[this.sessionIndex];
+				console.log('session',session);
+				let performTimeStart = this.$u.timeFormat(session.performTimeStart, 'hh:MM');
+				let performTimeEnd = this.$u.timeFormat(session.performTimeEnd, 'hh:MM');
 				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]
+					performTimeStart:session.performTimeStart,
+					performTimeEnd:session.performTimeEnd,
 				})
 			},
 			openShare(){

+ 1 - 1
utils/uploadImg.js

@@ -19,7 +19,7 @@ export function uploadImg(event,fileList) {
 				filePath: lists[i].url, // 文件路径
 				name: 'file',
 				formData: {
-					bucket: 'scenic'
+					bucket: 'greattransition'
 				},
 				success: (res) => {
 					let resolveData = {