Browse Source

更新注册

李书文 1 year ago
parent
commit
5b19af30c9
5 changed files with 103 additions and 284 deletions
  1. 1 1
      App.vue
  2. 1 70
      common/style.scss
  3. 1 1
      pages.json
  4. 3 0
      pages/index/index.vue
  5. 97 212
      pages/login/register.vue

+ 1 - 1
App.vue

@@ -50,7 +50,7 @@ button::after {
 /**挂载iconfont字体图标*/
 @font-face {
 	font-family: 'iconfont';
-	src: url('https://at.alicdn.com/t/c/font_4191999_1hzzkmngleh.ttf?t=1690877236088') format('truetype');
+	src: url('https://at.alicdn.com/t/c/font_4191999_c41m8qip7hc.ttf?t=1690883017178') format('truetype');
 	/* src: url('~@/static/font/iconfont.ttf') format('truetype'); */
 }
 .icon {

+ 1 - 70
common/style.scss

@@ -224,75 +224,6 @@
 		}
 	}
 }
-/*行业新闻*/
-.news {
-	.list {
-		margin-top: 10px;
-		.item {
-			background-color: white;
-			border-bottom: 1px solid #f0f2f7;
-			padding: 10px;
-			&:last-child {
-				border: 0px;
-			}
-			.img {
-				float: left;
-				width: 100px;
-				height: 70px;
-				border-radius: 5px;
-				background-color: #e0e0e0;
-			}
-			.con {
-				float: left;
-				width: 63%;
-				color: #888;
-				height: 71px;
-				font-size: 13px;
-				line-height: 1.6;
-				padding-left: 10px;
-				position: relative;
-				.title {
-					font-size: 14px;
-					color: #121212;
-					line-height: 1.6;
-				}
-				.desc {
-					display: none;
-				}
-				.date {
-					margin-top: 5px;
-					font-size: 13px;
-					bottom: 0px;
-					position: absolute;
-				}
-			}
-			.look {
-				display: none;
-				float: right;
-				border-radius: 3px;
-				padding: 10px 30px;
-			}
-		}
-	}
-	.detail {
-		background-color: white;
-		padding: 0px 20px 20px 20px;
-		.content {
-			padding-top: 20px;
-			.title {
-				font-size: 18px;
-			}
-			.desc {
-				padding-top: 15px;
-				font-size: 13px;
-				color: #7c8388;
-				text {
-					padding-right: 25px;
-				}
-			}
-		}
-	}
-}
 /*****设置**********/
 .cmd {
 	margin-top: 10px;
@@ -489,7 +420,7 @@
 	}
 	.con {
 		float: left;
-		width: 63%;
+		width: 60%;
 		color: #888;
 		height: 71px;
 		font-size: 13px;

+ 1 - 1
pages.json

@@ -18,7 +18,7 @@
 		}, {
 			"path": "pages/login/register",
 			"style": {
-				"navigationBarTitleText": "",
+				"navigationBarTitleText": "用户注册",
 				"enablePullDownRefresh": false
 			}
 

+ 3 - 0
pages/index/index.vue

@@ -119,6 +119,9 @@ export default {
 };
 </script>
 <style lang="scss">
+page {
+	background-color: #f6f6f7;
+}
 .top {
 	width: 100%;
 	position: relative;

+ 97 - 212
pages/login/register.vue

@@ -1,228 +1,113 @@
 <template>
-	<view>
-		<navigation-bar background-color="#fff" front-color="#000000" />
-		<view class="remain">
-			<h1>账号注册</h1>
-		</view>
-		<view class="form">
-			<u-form :model="form" ref="uForm" label-width="100px" label-position="top">
-				<u-form-item label="手机号" prop="phone">
-					<view class="form-input">
-						<u-input v-model="form.phone" type="number" border="surround" maxlength='11'
-							placeholder='请输入手机号码' :clearable='false' />
-					</view>
-				</u-form-item>
-				<!-- <u-form-item label="选择你的身份" prop="type">
-					<view class="form-input" @click="show=true" >
-						<u-input v-model="form.type" type="text"
-							placeholder='请选择你的身份' :clearable='false' disabled />
-					<u-picker :show="show" :columns="columns" @confirm="confirm" @change="changeHandler"></u-picker>
-					</view>
-				</u-form-item> -->
-				<u-form-item label="验证码" prop="smsCode">
-					<view class="form-input">
-						<u-input placeholder="请输入验证码" v-model="form.smsCode">
-							<template slot="suffix">
-								<span class="code" @click="getCode">{{code}}</span>
-							</template>
-						</u-input>
-					</view>
-				</u-form-item>
-				<u-form-item label="密码" prop="password">
-					<view class="form-input">
-						<u-input v-model="form.password" type="password" placeholder='请输入密码' :clearable='false' />
-					</view>
-				</u-form-item>
-				<u-form-item label="确认密码" prop="rePassword">
-					<view class="form-input">
-						<u-input v-model="form.rePassword" type="password" placeholder='请输入密码' :clearable='false' />
-					</view>
-				</u-form-item>
-			</u-form>
-			<view class="btn">
-				<view style="margin-bottom: 20rpx;font-size: 28rpx;">
-					<u-checkbox-group v-model="value" :wrap="true">
-						<u-checkbox name="1"></u-checkbox>登录同意<text class="blue-class" @click="getAgreement(1)">《用户协议》</text>和<text
-							class="blue-class" @click="getAgreement(2)">《隐私政策》</text>
-					</u-checkbox-group>
-				</view>
-				<view>
-					<u-button type="error" shape="circle" text="注册" @click="submit()"></u-button>
-				</view>
-				<view class="tip" @click="toLogin()">已有账号,去<text class="blue-class"
-						style="margin-left: 10rpx;">登录</text></view>
+	<view class="login">
+		<view class="dk" style="margin-top: 30px">
+			<view class="bg">
+				<text class="icon">&#xe8b9;</text>
+				<input type="number" v-model="form.phone" placeholder="请输入手机号" />
 			</view>
-
+			<view class="bg">
+				<text class="icon">&#xe624;</text>
+				<input type="number" v-model="form.smsCode" placeholder="验证码" />
+				<view class="label">获取验证码</view>
+			</view>
+			<view class="bg">
+				<text class="icon">&#xe8b2;</text>
+				<input :password="show" v-model="form.password" placeholder="请输入密码" />
+				<view class="label"><view class="icon" :class="{ active: !show }" @click="show = !show">&#xe7a6;</view></view>
+			</view>
+			<view class="bg">
+				<text class="icon">&#xe8b2;</text>
+				<input :password="show" v-model="form.rePassword" placeholder="确认密码" />
+				<view class="label"><view class="icon" :class="{ active: !show }" @click="show = !show">&#xe7a6;</view></view>
+			</view>
+			<view class="xy">
+				<u-checkbox-group class="checkbox" v-model="form.checked">
+					<u-checkbox size="15" shape="circle" label="我已阅读并同意" labelSize="13" name="true"></u-checkbox>
+				</u-checkbox-group>
+				<text class="a" @click="getAgreement(1)">《用户协议》</text>
+				<text>和</text>
+				<text class="a" @click="getAgreement(2)">《隐私政策》</text>
+			</view>
+			<button class="btn" @click="submit()">确定</button>
+			<button class="btn register" @click="toLogin()">返回</button>
 		</view>
 	</view>
 </template>
 
 <script>
-	export default {
-		data() {
-			const passwordValid = (rule, value, callback) => {
-				value == this.form.password ? callback() : callback(new Error('两次输入密码不一致'))
-			};
-			return {
-				time: 60,
-				code: '获取验证码',
-				value: ['1'],
-				form: {
-					phone: '',
-					smsCode: '',
-					password: '',
-					type: '',
-					rePassword: '',
-				},
-				rules: {
-					phone: [{
-							required: true,
-							message: '请输入手机号',
-							trigger: 'blur,change'
-						},
-						{
-							validator: (rule, value, callback) => {
-								// return uni.$u.test.mobile(value);
-							},
-							message: '手机号码不正确',
-							trigger: ['change', 'blur'],
-						}
-					],
-					password: [{
-						required: true,
-						message: '请输入密码',
-						trigger: 'blur,change'
-					}],
-					rePassword: [{
-						validator: passwordValid,
-						required: true,
-						trigger:'blur'
-
-					}],
-				},
-			}
-		},
-		onReady() {
-			this.$refs.uForm.setRules(this.rules);
-		},
-		onLoad(option) {
-			console.log(option.type)
-			this.form.type=option.type
-		},
-		created() {},
-		methods: {
-			startCount() {
-				setTimeout(() => {
-					let time = this.time;
-					if (time == 0) {
-						this.code = '重新获取';
-						this.time = 60;
-						return;
-					}
-					this.time = --time;
-					this.code = time + '后重新获取';
-					this.startCount();
-				}, 1000)
-			},
-			getCode() {
+export default {
+	data() {
+		return {
+			show: true,
+			time: 60,
+			code: '获取验证码',
+			form: {}
+		};
+	},
+	onLoad(option) {
+		this.form.type = option.type;
+	},
+	created() {},
+	methods: {
+		startCount() {
+			setTimeout(() => {
 				let time = this.time;
-				if (time > 0 && time < 60) {
-					return;
-				}
-				let phone = this.form.phone;
-				if (!this.$common.isPhone(phone)) {
-					this.$common.toast('请输入正确的手机号');
+				if (time == 0) {
+					this.code = '重新获取';
+					this.time = 60;
 					return;
 				}
+				this.time = --time;
+				this.code = time + '后重新获取';
 				this.startCount();
-				this.$api.getPhoneSmsCode().then(resp => {
-					this.$common.toast('已发送');
-				})
-			},
-			submit() {
-				this.$refs.uForm.validate().then(res => {
-					let value = this.value;
-					if (value.length == 0) {
-						this.$common.toast('请先同意协议');
-						return;
-					}
-					this.$api.doRefister(this.form).then(res => {
-						if (res.code == 200) {
-							uni.$u.toast('注册成功')
-							uni.navigateTo({
-								url: '/pages/login/login'
-							});
-						}
-					}).catch(err => {
-						console.log(err)
-					})
-				}).catch(errors => {})
-			},
-			toLogin() {
-				uni.navigateTo({
-					url: '/pages/login/login'
-				});
-			},
-			getAgreement(id) {
-				this.$common.to('/pages/login/userAgreement?id='+id)
+			}, 1000);
+		},
+		getCode() {
+			let time = this.time;
+			if (time > 0 && time < 60) {
+				return;
+			}
+			let phone = this.form.phone;
+			if (!this.$common.isPhone(phone)) {
+				this.$common.toast('请输入正确的手机号');
+				return;
 			}
-			// changeHandler(e){
-			// 	console.log(e)
-			// 	this.form.type=e.value[0]
-			// },
-			// confirm(e) {
-			// 	// console.log(e)
-			// 	this.show=false
-			// }
+			this.startCount();
+			this.$api.getPhoneSmsCode().then(resp => {
+				this.$common.toast('已发送');
+			});
+		},
+		submit() {
+			let rule = [
+				{ name: 'phone', checkType: 'phone', errorMsg: '请输入正确的手机号' },
+				{ name: 'smsCode', checkType: 'notnull', errorMsg: '请输入验证码' },
+				{ name: 'password', checkType: 'notnull', errorMsg: '请输入密码' },
+				{ name: 'rePassword', checkType: 'same', checkRule: this.form.password, errorMsg: '两次输入不一致' },
+				{ name: 'checked', checkType: 'notnull', errorMsg: '请同意并勾选协议' }
+			];
+			if (!this.verify.check(this.form, rule)) {
+				uni.showModal({ content: this.verify.error, showCancel: false });
+				return false;
+			}
+			this.$api.doRefister(this.form).then(res => {
+				if (res.code == 200) {
+					uni.$u.toast('注册成功');
+					uni.navigateTo({
+						url: '/pages/login/login'
+					});
+				}
+			});
+		},
+		toLogin() {
+			uni.navigateTo({
+				url: '/pages/login/login'
+			});
+		},
+		getAgreement(id) {
+			uni.navigateTo({ url: '/pages/login/userAgreement?id=' + id });
 		}
 	}
+};
 </script>
 
-<style lang="scss">
-	page {
-		background-color: #fff;
-		padding: 30px;
-	}
-
-	.remain {
-		margin: 10px;
-		margin: 30rpx 150rpx 0;
-		text-align: center;
-	}
-
-	.wel {
-		margin-top: 10px;
-	}
-
-	.form {
-		height: 200px;
-	}
-
-	.form-input {
-		width: 100%;
-		background-color: #f5f5f5;
-		margin-top: 5px;
-		border-radius: 20rpx;
-		border: none;
-	}
-
-	.btn {
-		margin: 25px 10px;
-	}
-
-	.tip {
-		margin-top: 30px;
-		text-align: center;
-		font-size: 14px;
-	}
-
-	.code {
-		color: red;
-		font-size: 13px;
-	}
-
-	.blue-class {
-		color: #55aaff;
-		cursor: pointer;
-	}
-</style>
+<style lang="scss"></style>