<template>
	<view class="page">
		<u-navbar title="计费规则" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
			height='36'></u-navbar>
			<view class="cont" style="margin-top: 50rpx;">
				<view class="tit">
					骑行服务费
				</view>
				<view class="card">
					<view class="li">
						<view class="left">
							起步价
						</view>
						<view class="right">
							{{startingPrice}}元(含{{startingHowManyMinutes}}分钟)
						</view>
					</view>
					<view class="li" style="margin-top: 38rpx;">
						<view class="left">
							时长费
						</view>
						<view class="right">
							{{timeFee}}元/{{timeMinutes}}分钟
						</view>
					</view>
					<view class="tip">
						超出起步价包含时长后收取
					</view>
				</view>
				<view class="tips">
					<view class="yuan">
						
					</view>
					<view class="txt">
						骑行服务费以开始服务时刻所对应的计费规则为准,时长 费不足1个计费周时,按1个计费周期计算费用
					</view>
					
				</view>
				
				<view class="tit" style="margin-top: 50rpx;">
					违规停车管理费
				</view>
				<view class="card">
					<view class="li">
						<view class="left">
							调度费(非停车点)
						</view>
						<view class="right">
							{{dispatchFee}}元
						</view>
					</view>
					<view class="tip" style="width: 440rpx;">
						车辆停止运营区内非还车点(P点)需缴纳 的费用
					</view>
					<view class="li" style="margin-top: 38rpx;">
						<view class="left">
							管理费费
						</view>
						<view class="right">
							{{vehicleManagementFee}}元
						</view>
					</view>
					<view class="tip">
						车辆停至运营区外需缴纳的费用
					</view>
				</view>
				<view class="tips">
					<view class="yuan">
						
					</view>
					<view class="txt">
						调度费(非还车点)、调度费(运营区域外)不重复叠加 收取
					</view>
					
				</view>
			</view>
			
	</view>
</template>

<script>
	export default {
		data() {
			return {
				bgc: {
					backgroundColor: "#fff",
				},
			}
		},
		computed: {
			appointmentServiceFee() {
				return this.$store.getters.appointmentServiceFee;
			},
			dispatchFee() {
				return this.$store.getters.dispatchFee;
			},
			vehicleManagementFee() {
				return this.$store.getters.vehicleManagementFee;
			},
			startingPrice() {
				return this.$store.getters.startingPrice;
			},
			timeFee() {
				return this.$store.getters.timeFee;
			},
			timeMinutes() {
				return this.$store.getters.timeMinutes;
			},
			startingHowManyMinutes() {
				return this.$store.getters.startingHowManyMinutes;
			},
			userId() {
				return this.$store.getters.userId;
			},
		},
		methods: {
			
		}
	}
</script>

<style lang="scss" >
page{
	background-color: #fff;
}
.page{
	
	width: 750rpx;
	// display: flex;
	// justify-content: center;
	.cont{
		margin: 0 58rpx;
		.tit{
			margin-left: 32rpx;
			font-weight: 700;
			font-size: 36rpx;
			color: #3D3D3D;
		}
		.card{
			margin-top: 26rpx;
			padding: 40rpx 30rpx;
			width: 634rpx;
			// height: 232rpx;
			background: #F3F3F3;
			border-radius: 24rpx 24rpx 24rpx 24rpx;
			.li{
				display: flex;
				justify-content: space-between;
				align-items: center;
				.left{
					font-weight: 400;
					font-size: 28rpx;
					color: #3D3D3D;
					line-height: 38rpx;
				}
				.right{
					font-weight: 400;
					font-size: 28rpx;
					color: #3D3D3D;
					line-height: 38rpx;
				}
			}
			.tip{
				font-weight: 400;
				font-size: 24rpx;
				color: #808080;
			}
		}
		.tips{
			
			display: flex;
			// flex-wrap: nowrap;
			// align-items: center;
			
			font-weight: 400;
			font-size: 24rpx;
			color: #808080;
			.yuan{
				// display: inline;
				margin-top: 10rpx;
				width: 12rpx;
				height: 12rpx;
				border-radius: 50%;
				background-color:#808080 ;
				margin-right: 10rpx;
			}
			.txt{
				font-weight: 400;
				font-size: 24rpx;
				color: #808080;
			}
		}
	}
	
}
</style>