pwd-login.vue 4.6 KB
Newer Older
芊里 已提交
1
<template>
芊里 已提交
2 3 4
	<view class="wrap">
		<view class="wrap-content">
			<view class="content">
芊里 已提交
5
				<!-- 顶部文字 -->
芊里 已提交
6
				<text class="content-top-title">手机号密码登录</text>
芊里 已提交
7 8

				<!-- 登录框 (选择手机号所属国家和地区需要另行实现) -->
芊里 已提交
9
				<view class="phone-input-box">
芊里 已提交
10
					<picker mode="selector" :range="phoneArea" @change="selectPhoneArea">
芊里 已提交
11
						<text class="phone-area">{{currenPhoneArea}}</text>
芊里 已提交
12
					</picker>
芊里 已提交
13
					<input type="number" class="phone-input" placeholder="请输入手机号" maxlength="11" v-model="phoneNumber" />
芊里 已提交
14 15
				</view>

芊里 已提交
16 17
				<view class="phone-input-box">
					<input type="password" :password="true" class="phone-input pwd-input" placeholder="请输入密码"
芊里 已提交
18 19 20
						v-model="password" />
				</view>

芊里 已提交
21
				<login-ikonw class="login-iknow" :link="link" text="登录即表示同意用户协议和隐私政策"></login-ikonw>
芊里 已提交
22 23

				<!-- 发送按钮 -->
芊里 已提交
24
				<view class="send-btn-box" hover-class="hover"
芊里 已提交
25
					@click="pwdLogin" :class="canLogin?'send-btn-active':''">
芊里 已提交
26
					<text class="send-btn-text">登录</text>
芊里 已提交
27 28 29
				</view>

				<!-- 忘记密码 -->
芊里 已提交
30 31 32
				<view class="auth-box">
					<text class="login-text login-text-sub">忘记了?</text>
					<text class="login-text" @click="toRetrievePwd">找回密码</text>
芊里 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
				</view>
			</view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				phoneNumber: '',
				password: '',
				link: [{
					text: '用户协议',
					to: '/baidu.com'
				}, {
					text: '隐私政策',
					to: 'baidu'
				}],
				phoneArea: ['+86', '+87'],
				currenPhoneArea: '+86',
			}
		},
		computed: {
			canLogin() {
				let reg_phone = /^1\d{10}$/;
				let reg_pwd = /^.{6,20}$/;
				let isPhone = reg_phone.test(this.phoneNumber);

				let isPwd = reg_pwd.test(this.password);
				return isPhone && isPwd;
			}
		},
		methods: {
			/**
			 * 页面跳转,找回密码
			 */
			toRetrievePwd() {
				let reg_phone = /^1\d{10}$/;
				let isPhone = reg_phone.test(this.phoneNumber);
				if (!isPhone) return uni.showToast({
					title: '请输入正确的手机号',
					icon: 'none'
				});

				uni.navigateTo({
					url: './pwd-retrieve?phoneNumber=' + this.phoneNumber + '&phoneArea=' + this.currenPhoneArea
				})
			},
			/**
			 * 密码登录
			 */
			pwdLogin() {
				if (!this.canLogin) return;
				// 下边是可以登录
			},
			selectPhoneArea(event) {
				this.currenPhoneArea = this.phoneArea[event.detail.value];
			},
		}
	}
</script>

<style>
芊里 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
	/* #ifndef APP-NVUE */
	page {
		display: flex;
		flex-direction: column;
		flex: 1;
		height: 100%;
	}

	/* #endif */
	.wrap {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: column;
		flex: 1;
		width: 750rpx;
		background-color: #fff;
芊里 已提交
114
	}
芊里 已提交
115

芊里 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
	.wrap-content {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex: 1;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	.content {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		width: 630rpx;
		flex-direction: column;
	}

	.content-top-title {
		font-size: 32rpx;
		font-weight: 600;
		padding-top: 50rpx;
	}

	.login-iknow {
芊里 已提交
141 142 143 144 145 146 147
		padding-top: 24rpx;
		padding-bottom: 36rpx;
	}

	.phone-input-box {
		height: 85rpx;
		background-color: #f9f9f9;
芊里 已提交
148 149 150 151 152 153 154 155 156 157
		border-radius: 6rpx;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
	}

	.phone-area {
		padding: 0 20rpx;
		font-size: 30rpx;
芊里 已提交
158 159 160
	}

	.phone-input {
芊里 已提交
161
		flex: 1;
芊里 已提交
162 163
		border-left-width: 1px;
		border-left-color: #d7d9d8;
芊里 已提交
164 165 166 167 168 169
		padding: 0 20rpx;
		font-size: 30rpx;
	}

	.pwd-input {
		border-left-width: 0px;
芊里 已提交
170 171
	}

芊里 已提交
172

芊里 已提交
173 174 175
	.tip-text {
		padding-top: 20rpx;
		padding-bottom: 36rpx;
芊里 已提交
176 177
		color: #8a8f8b;
		font-size: 26rpx;
芊里 已提交
178 179 180 181 182 183
	}

	.send-btn-box {
		height: 85rpx;
		background-color: #d8d8da;
		margin-bottom: 50rpx;
芊里 已提交
184 185 186 187 188 189 190 191 192 193 194 195
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: column;
		width: 630rpx;
		justify-content: center;
		align-items: center;
		border-radius: 6rpx;
	}

	.send-btn-text {
		color: #fff;
芊里 已提交
196 197 198 199 200 201
	}

	.send-btn-active {
		background-color: #007aff;
	}

芊里 已提交
202 203 204 205 206 207 208 209 210 211
	.auth-box {
		width: 630rpx;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

芊里 已提交
212 213
	.login-text {
		color: #1c436e;
芊里 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
		font-size: 26rpx;
	}

	.hover {
		opacity: 0.8;
	}
	
	
	/* 密码登录 */
	.phone-input-box{
		margin-top: 20rpx;
	}
	.auth-box{
		justify-content: flex-start;
	}
	.login-text-sub{
		color: #8a8f8b;
芊里 已提交
231 232
	}
</style>