Browse Source

车位锁和首页更换添加车牌信息

tianhui 3 years ago
parent
commit
32d118fc0a
4 changed files with 314 additions and 8 deletions
  1. 47 0
      pages/index/index.scss
  2. 185 0
      pages/index/index.vue
  3. 6 1
      pages/parkingLock/parkingLock.scss
  4. 76 7
      pages/parkingLock/parkingLock.vue

+ 47 - 0
pages/index/index.scss

@@ -84,6 +84,13 @@ page{background-color: $my-page-bg-color;}
 			width: 160rpx;
 			text-align: right;
 		}
+		.pending-order-body-right-label{
+			color: #008CFF;
+			margin-left: 20rpx;
+		}
+		.pending-order-body-center-label{
+			color: #008CFF;
+		}
 		.nosign{
 			width: 100%;
 			line-height: 56rpx;
@@ -312,4 +319,44 @@ page{background-color: $my-page-bg-color;}
 		left: 0;
 		top: 17rpx;
 	}
+}
+.new-plate-number{	
+	margin-bottom: 70rpx;
+}
+.message-input-wrap{
+	margin: 0 -40rpx;
+}
+.message-input-wrap /deep/ .u-input ~ uni-view:last-of-type .u-char-item{
+	background-color: #E8FFE8;
+}
+.really-license-txt{
+	color: #008CFF;
+}
+.really-license-txt1{
+	color: #008CFF;
+	margin: 20rpx;
+}
+.popup-vehicleNo-title{
+	font-size: 48rpx;
+	text-align: center;
+	padding-top: 20rpx;
+}
+.popup-vehicleNo-center{
+	width: 95%;
+	height: 2rpx;
+	border-top: solid rgb(146, 146, 146) 2rpx;
+	margin: 30rpx 20rpx 50rpx 20rpx;
+}
+.popup-vehicleNo-select{
+	text-align: center;
+	color: #777777;
+}
+.vehicleNo-btn{
+	display: flex;
+	margin: 40rpx 0;
+}
+.parking-lock-pay-attention{
+	margin: 50rpx;
+	line-height: 48rpx;
+	color: #777777;
 }

+ 185 - 0
pages/index/index.vue

@@ -85,6 +85,15 @@
 								<span class="pending-order-body-left-label">预计金额:</span>
 								<span>{{ item.payAmount }}</span>
 							</view>
+							<view class="item-cell" v-if="item.vehicleNo==''">
+								<span class="pending-order-body-left-label">车牌信息:</span>
+								<span class="pending-order-body-center-label" @click="addvehicleNo(item.orderId)">添加车牌</span>
+							</view>
+							<view class="item-cell" v-else>
+								<span class="pending-order-body-left-label">车牌信息:</span>
+								<span >{{ item.vehicleNo }}</span>
+								<span class="pending-order-body-right-label" @click="changevehicleNo(item.orderId)">更换</span>
+							</view>
 							<!-- <view class="item-cell">
                 <span class="pending-order-body-left-label">出场时间:</span>
                 <span>{{item.outTime||'停放中'}}</span>
@@ -177,6 +186,57 @@
 			:show-confirm-button="false"
 		/>
 		<u-toast ref="uToast" />
+		
+		<!-- ===================================== 添加车牌弹出层 ===================================== -->
+		<u-popup class="popup-vehicleNo" v-model="ShowaddvehicleNo" mode="center" border-radius="20" width="710rpx" height="auto">
+			<view class="popup-vehicleNo-title">添加车牌</view>
+			<view class="popup-vehicleNo-center"></view>
+			<view class="popup-vehicleNo-content">
+				<view class="new-plate-number">
+					<view class="message-input-wrap" @click="messageInputClick">
+						<u-message-input :maxlength="8" width="70" font-size="50" :disabled-keyboard="true" v-model="newPlateNumber"></u-message-input>
+					</view>		
+				</view>
+			</view>
+			<view class="popup-vehicleNo-select">暂无绑定车牌</view>
+			<view class="vehicleNo-btn">
+				<u-button type="primary" @click="handleAddCar">确认</u-button>
+				<u-button type="primary" plain @click="ShowaddvehicleNo=false">取消</u-button>
+			</view>
+		</u-popup>
+		
+		<u-action-sheet :list="colorList" @click="confirmColor" v-model="colorShow"></u-action-sheet>
+		<u-keyboard ref="uKeyboard" mode="car" @change="keyboardChange" @confirm="keyboardConfirm" @backspace="backspace" v-model="keyboardshow" ></u-keyboard>
+		
+		<!-- ===================================== 更换车牌弹出层 ===================================== -->
+		<u-popup class="popup-vehicleNo" v-model="ShowchangevehicleNo" mode="center" border-radius="20" width="710rpx" height="auto">
+			<view class="popup-vehicleNo-title">更换车牌</view>
+			<view class="popup-vehicleNo-center"></view>
+			<view class="popup-vehicleNo-content">
+				<view class="new-plate-number">
+					<view class="message-input-wrap" @click="messageInputClick">
+						<u-message-input :maxlength="8" width="70" font-size="50" :disabled-keyboard="true" v-model="newPlateNumber"></u-message-input>
+					</view>
+				</view>
+			</view>
+			<view class="popup-vehicleNo-select">
+				<u-collapse ref="refValue">
+					<u-collapse-item title="点击选择车牌" align="center" >
+						<u-cell-group >
+							<u-cell-item  :title="item.vehicleNo" v-for="(item, index) in groupList"  :key="index" :arrow="false" >
+								<u-radio-group v-model="selectvalue"  @change="radioGroupChange">
+									<u-radio  :name="item.vehicleNo" :key="index"></u-radio>
+								</u-radio-group>
+							</u-cell-item>
+						</u-cell-group>
+					</u-collapse-item>
+				</u-collapse>
+			</view>
+			<view class="vehicleNo-btn">
+				<u-button type="primary" @click="handleAddCar">确认</u-button>
+				<u-button type="primary" plain @click="ShowchangevehicleNo=false">取消</u-button>
+			</view>
+		</u-popup>
 	</view>
 </template>
 
@@ -190,6 +250,26 @@
 		},
 		data() {
 			return {
+				orderid:'',
+				selectvalue: null,
+				groupList: [],
+				radiogroupList: [],
+				keyboardshow: false,
+				colorShow: false,
+				colorList:[
+					{text:'蓝色',colorCode:0}
+					,{text:'黄色',colorCode:1}
+					,{text:'黑色',colorCode:2}
+					,{text:'白色',colorCode:3}
+					,{text:'绿色',colorCode:4}
+					,{text:'其他',colorCode:99}
+				],
+				vehicleColor:0,
+				newPlateNumber:'',
+				//更换车牌弹窗
+				ShowchangevehicleNo: false,
+				//添加车牌弹窗
+				ShowaddvehicleNo: false,
 				// 城市选择框
 				cityOpen: false,
 				// 选中城市
@@ -306,6 +386,111 @@
 			};
 		},
 		methods: {
+			radioGroupChange(e){
+				this.newPlateNumber = e
+			},
+			// 获取车辆列表
+			handlegetMycars(){
+				let that = this;
+				this.$u.api.getMycars()
+					.then(res=>{
+						if (res.code === 200) {
+							this.groupList = res.data.rows;
+							this.radiogroupList = res.data.rows;
+							this.$nextTick(() => {
+								// dom元素更新后执行,因此这里能正确打印更改之后的值
+								console.log(that.$refs.refValue.init()) // 改变了的值
+							})
+						} else {
+							this.$refs.uToast.show({
+								title: res.msg,
+								type: 'error'
+							})
+						}
+					})
+					.catch(err=>{
+						this.$refs.uToast.show({
+							title: '操作失败!',
+							type: 'error'
+						})
+					});
+			},
+			//更换车牌信息
+			changevehicleNo(id){
+				this.orderid = id;
+				this.ShowchangevehicleNo = true;
+				this.handlegetMycars();
+			},
+			// 添加车辆
+			handleAddCar(){
+				if(!this.$u.test.carNo(this.newPlateNumber)){
+					this.$refs.uToast.show({
+						title: '请正确填写车牌号',
+						type: 'error',
+					});
+					return
+				}
+				let param = {
+					orderId: this.orderid,
+					vehicleNo: this.newPlateNumber,
+					vehicleColor: this.vehicleColor,
+				};
+				let that = this;
+				this.$u.api.bindVehicleNo(param)
+					.then(res=>{
+						if (res.code === 200) {
+							this.$refs.uToast.show({
+								title: res.msg,
+								type: 'success',
+							});
+							that.handleGetIndexData();
+							that.ShowchangevehicleNo = false;
+						} else {
+							this.$refs.uToast.show({
+								title: res.msg,
+								type: 'error',
+							});
+						}
+					})
+					.catch(err=>{
+						this.$refs.uToast.show({
+							title: '操作失败!',
+							type: 'error',
+						});
+					});
+			},
+			//新增车牌
+			addvehicleNo(){
+				this.ShowaddvehicleNo = true;
+			},
+			
+			// 点击输入框
+			messageInputClick(){
+				this.keyboardshow = true;
+			},
+			// 按键被点击(点击退格键不会触发此事件)
+			keyboardChange(val) {
+				// 将每次按键的值拼接到value变量中,注意+=写法
+				this.newPlateNumber += val;
+			},
+			// 退格键被点击
+			backspace() {
+				// 删除value的最后一个字符
+				if(this.newPlateNumber.length) this.newPlateNumber = this.newPlateNumber.substr(0, this.newPlateNumber.length - 1);
+			},
+			// 键盘输入完成后确认
+			keyboardConfirm(){
+				this.colorShow = true;
+			},
+			// 确认颜色
+			confirmColor(e){
+				this.vehicleColor = this.colorList[e].colorCode;
+			},
+			//添加车牌
+			addvehicleNo(id){
+				this.orderid = id;
+				this.ShowaddvehicleNo = true;
+			},
 			// 定位
 			getLocation() {
 				const that = this

+ 6 - 1
pages/parkingLock/parkingLock.scss

@@ -282,9 +282,14 @@
 }
 .popup-vehicleNo-select{
 	text-align: center;
-	color: #777777;;
+	color: #777777;
 }
 .vehicleNo-btn{
 	display: flex;
 	margin: 40rpx 0;
+}
+.parking-lock-pay-attention{
+	margin: 50rpx;
+	line-height: 48rpx;
+	color: #777777;
 }

+ 76 - 7
pages/parkingLock/parkingLock.vue

@@ -54,6 +54,11 @@
 			<view class="parking-lock-pay-btn">
 				<button type="default" @click="payMoney">立即支付</button>
 			</view>
+			<view class="parking-lock-pay-attention">
+				<text>
+					温馨提示:车牌信息可填可不填,如果您已通过本机号码办理了特定车或包月车业务,则需要输入车牌号,否则将按照常规收费标准进行收费。
+				</text>
+			</view>
 		</view>
 		<!-- 车位锁开始状态 -->
 		<view class="parking-lock-begin" v-else-if="parkingLockStatus === 2">
@@ -111,18 +116,46 @@
 				<view class="new-plate-number">
 					<view class="message-input-wrap" @click="messageInputClick">
 						<u-message-input :maxlength="8" width="70" font-size="50" :disabled-keyboard="true" v-model="newPlateNumber"></u-message-input>
-					</view>				
-					<u-keyboard ref="uKeyboard" mode="car" @change="keyboardChange" @confirm="keyboardConfirm" @backspace="backspace" v-model="keyboardshow"></u-keyboard>
+					</view>		
 				</view>
 			</view>
-			<view class="popup-vehicleNo-select" v-if="orderInfo.vehicleNo==''">暂无绑定车牌</view>
-			<view class="popup-vehicleNo-select" v-else>绑定车牌</view>
+			<view class="popup-vehicleNo-select">暂无绑定车牌</view>
 			<view class="vehicleNo-btn">
 				<u-button type="primary" @click="handleAddCar">确认</u-button>
 				<u-button type="primary" plain @click="ShowaddvehicleNo=false">取消</u-button>
 			</view>
 		</u-popup>
+		
+		<u-popup class="popup-vehicleNo" v-model="ShowchangevehicleNo" mode="center" border-radius="20" width="710rpx" height="auto">
+			<view class="popup-vehicleNo-title">更换车牌</view>
+			<view class="popup-vehicleNo-center"></view>
+			<view class="popup-vehicleNo-content">
+				<view class="new-plate-number">
+					<view class="message-input-wrap" @click="messageInputClick">
+						<u-message-input :maxlength="8" width="70" font-size="50" :disabled-keyboard="true" v-model="newPlateNumber"></u-message-input>
+					</view>	
+				</view>
+			</view>
+			<view class="popup-vehicleNo-select">
+				<u-collapse ref="refValue">
+					<u-collapse-item title="点击选择车牌" align="center">
+						<u-cell-group >
+							<u-cell-item  :title="item.vehicleNo" v-for="(item, index) in groupList"  :key="index" :arrow="false" >
+								<u-radio-group v-model="selectvalue"  @change="radioGroupChange">
+									<u-radio  :name="item.vehicleNo" :key="index"></u-radio>
+								</u-radio-group>
+							</u-cell-item>
+						</u-cell-group>
+					</u-collapse-item>
+				</u-collapse>
+			</view>
+			<view class="vehicleNo-btn">
+				<u-button type="primary" @click="handleAddCar">确认</u-button>
+				<u-button type="primary" plain @click="ShowchangevehicleNo=false">取消</u-button>
+			</view>
+		</u-popup>
 		<u-action-sheet :list="colorList" @click="confirmColor" v-model="colorShow"></u-action-sheet>
+		<u-keyboard ref="uKeyboard" mode="car" @change="keyboardChange" @confirm="keyboardConfirm" @backspace="backspace" v-model="keyboardshow"></u-keyboard>
 	</view>
 </template>
 
@@ -135,6 +168,9 @@
 		},
 		data() {
 			return {
+				selectvalue: null,
+				groupList: [],
+				radiogroupList: [],
 				keyboardshow: false,
 				colorShow: false,
 				colorList:[
@@ -147,6 +183,8 @@
 				],
 				vehicleColor:0,
 				newPlateNumber:'',
+				//更换车牌弹窗
+				ShowchangevehicleNo: false,
 				//添加车牌弹窗
 				ShowaddvehicleNo: false,
 				// 车位锁状态 1:支付 2:开始开锁 3:开锁中 4:开锁完成
@@ -195,7 +233,6 @@
 			}else{
 				this.show = false
 			}
-			
 		},
 		onHide() {
 			if (this.timer) {
@@ -206,9 +243,39 @@
 			}
 		},
 		methods: {
+			radioGroupChange(e){
+				this.newPlateNumber = e
+			},
+			// 获取车辆列表
+			handlegetMycars(){
+				let that = this;
+				this.$u.api.getMycars()
+					.then(res=>{
+						if (res.code === 200) {
+							this.groupList = res.data.rows;
+							this.radiogroupList = res.data.rows;
+							this.$nextTick(() => {
+								// dom元素更新后执行,因此这里能正确打印更改之后的值
+								console.log(that.$refs.refValue.init()) // 改变了的值
+							})
+						} else {
+							this.$refs.uToast.show({
+								title: res.msg,
+								type: 'error'
+							})
+						}
+					})
+					.catch(err=>{
+						this.$refs.uToast.show({
+							title: '操作失败!',
+							type: 'error'
+						})
+					});
+			},
 			//更换车牌信息
 			changevehicleNo(){
-				
+				this.ShowchangevehicleNo = true;
+				this.handlegetMycars();
 			},
 			// 添加车辆
 			handleAddCar(){
@@ -224,6 +291,7 @@
 					vehicleNo: this.newPlateNumber,
 					vehicleColor: this.vehicleColor,
 				};
+				let that = this;
 				this.$u.api.bindVehicleNo(param)
 					.then(res=>{
 						if (res.code === 200) {
@@ -231,7 +299,8 @@
 								title: res.msg,
 								type: 'success',
 							});
-							this.getOrderDetails(this.orderId);
+							that.getOrderDetails(that.orderId);
+							that.ShowchangevehicleNo = false;
 						} else {
 							this.$refs.uToast.show({
 								title: res.msg,