<template>
	<view class="content">
		<view class="container">
			<view class="box-hang">
				<view class=""><span style="color: red;">*</span>姓名</view>
				<view class="dis">
					<input v-model="value" style="text-align: right;" placeholder="请输入"></input>
				</view>
			</view>
			<view class="box-hang">
				<view class=""><span style="color: red;">*</span>手机号</view>
				<view class="dis">
					<input v-model="value" style="text-align: right;" placeholder="请输入"></input>
				</view>
			</view>
			<view class="box-hang">
				<view class="">会员卡号</view>
				<view class="dis">
					<input v-model="value" style="text-align: right;" placeholder="请输入"></input>
				</view>
			</view>
			<view class="box-hang">
				<view class="">车牌号</view>
				<view class="dis">
					<text>未设置</text>
					<uni-icons type="right" size="16"></uni-icons>
				</view>
			</view>
			<view class="box-hang">
				<view class=""><span style="color: red;">*</span>副卡类型</view>
				<view class="dis" @click="show = !show">
					<text>共享副卡-不限额</text>
					<uni-icons type="right" size="16"></uni-icons>
				</view>
			</view>
			<view class="box-hang" style="margin-top: 10px;">
				<view class=""><span style="color: red;">*</span>是否开启消费通知</view>
				<view class="dis">
					<u-switch v-model="value1" activeColor="#6DD400" inactiveColor="rgb(230, 230, 230)"></u-switch>
				</view>
			</view>
			<view class="box-hang">
				<view class=""><span style="color: red;">*</span>是否启用</view>
				<view class="dis">
					<u-switch v-model="value2" activeColor="#6DD400" inactiveColor="rgb(230, 230, 230)"></u-switch>
				</view>
			</view>
			<view class="box-end">
				<view style="display: flex;">
					<view style="height: 14px;margin-right: 5px;"><u-icon name="info-circle"></u-icon></view>
					
					<view>注:</view>
				</view>
				<view>
					<view>共享副卡-不限额:副卡与主卡共享钱包,同步余额。</view>
					<view>共享副卡-限额:副卡与主卡共享钱包,副卡可设置限额。</view>
					<view>独立副卡:副卡与主卡独立钱包,独立余额。</view>
				</view>
			</view>

			<view class="but-sub">保存</view>

			<u-picker :show="show" :columns="columns" @cancel="cancel" @confirm="confirm"></u-picker>
		</view>

	</view>
</template>

<script>
	import request from '../../utils/request';
	export default {
		data() {
			return {
				title: '',
				List: [],
				pageNo: 1,
				pageSize: 10,
				totalPage: '',
				value: "",
				value1: true,
				value2: true,
				show: false,
				columns: [
					['共享副卡-不限额', '共享副卡-限额', '独立副卡']
				],
			}
		},
		onLoad() {

		},
		onPullDownRefresh() {
			//下拉刷新

		},
		onReachBottom() {
			// 触底加载
			if (this.pageNo >= this.totalPage) {
				
			} else {
				this.pageNo++

			}
		},

		components: {

		},
		methods: {
			cancel() {
				this.show = false
			},
			confirm() {
				this.show = false
			},
			goback() {
				uni.navigateBack()
			}
		}
	}
</script>

<style scoped lang="scss">
	.content {
		background: #f4f5f6;
	}

	.container {
		width: 100%;
		height: 100vh;
		box-sizing: border-box;
		padding-top: 10px;
	}

	.my-header {
		width: 100%;
		height: 88px;
		background: #ffffff;
		display: flex;
		align-items: center;
		justify-content: space-between;
		color: #000;
		box-sizing: border-box;
		padding: 0px 15px;
		padding-top: 40px;
		z-index: 99999;

		.my-icons {
			width: 20px;

		}

		position: fixed;
		top: 0px;
	}

	.box-hang {
		background-color: white;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		box-sizing: border-box;
		padding: 15px 15px;
		border-bottom: 1px solid #f4f5f6;
	}

	.dis {
		color: #a69999;
	}

	.box-end {
		margin-top: 10px;
		display: flex;
		color: #999999;
		font-size: 12px;
		padding: 0 15px;
	}

	.but-sub {
		width: 305px;
		height: 40px;
		line-height: 40px;
		margin: 0 auto;
		background-color: #FF9655;
		color: white;
		border-radius: 50px;
		text-align: center;
		position: absolute;
		bottom: 40px;
		left: 11%;
	}
</style>