Browse Source

更新登录

李书文 1 year ago
parent
commit
d0a6545393
4 changed files with 189 additions and 136 deletions
  1. 1 1
      App.vue
  2. 102 0
      common/style.scss
  3. 2 3
      pages.json
  4. 84 132
      pages/login/login.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_43ezasylphf.ttf?t=1690874997612') format('truetype');
+	src: url('https://at.alicdn.com/t/c/font_4191999_1hzzkmngleh.ttf?t=1690877236088') format('truetype');
 	/* src: url('~@/static/font/iconfont.ttf') format('truetype'); */
 }
 .icon {

+ 102 - 0
common/style.scss

@@ -371,6 +371,108 @@
 	color: red;
 	font-weight: bold;
 }
+/**用户登录******/
+.login {
+	.app_top {
+		display: block;
+		position: relative;
+		.icon {
+			position: absolute;
+			color: white;
+			z-index: 2;
+			top: 5%;
+			left: 13px;
+			font-size: 25px;
+		}
+		.img {
+			width: 100%;
+		}
+		.welcome {
+			position: absolute;
+			color:white;
+			z-index: 1111;
+			top: 25%;
+			left: 10%;
+			font-size: 17px;
+			.desc {
+				margin-bottom: 5px;
+				text-shadow: 0px 5px 10px #1a1a1a;
+				font-weight: bold;
+			}
+		}
+	}
+	.dk {
+		position: relative;
+		margin: 0 auto;
+		padding: 15px 30px 30px 30px;
+		background-color: white;
+		border-radius: 30px;
+		margin-top: -85px;
+		.bg {
+			overflow: hidden;
+			border-bottom: 1px solid $line;
+			padding: 5px 0px 5px 0px;
+			.icon {
+				float: left;
+				padding-left: 10px;
+				margin-top: 14px;
+				font-size: 18px;
+			}
+			input {
+				height: 45px;
+				text-align: left;
+				padding-left: 15px;
+				font-size: 14px;
+				color: $font-c;
+				width: 60%;
+			}
+			.label {
+				float: right;
+				margin-top: -31px;
+				padding-right: 15px;
+				font-size: 14px;
+				color: $main-color;
+				cursor: pointer;
+				.icon {
+					color: darkgray;
+					font-size: 22px;
+					margin-top: -4px;
+					&.active {
+						color: $main-color;
+					}
+				}
+				.captcha {
+					width: 90px;
+					height: 34px;
+					margin-top: -8px;
+					border-radius: 3px;
+				}
+			}
+		}
+	}
+	.xy {
+		color: $font-c;
+		padding-top: 15px;
+		font-size: 13px;
+		.checkbox {
+			float: left;
+			font-size: 13px;
+			margin-top: 1px;
+		}
+		.a {
+			color: $main-color;
+		}
+	}
+	.btn {
+		margin-top: 25px;
+	}
+	.register {
+		background-color: #f5f6fa;
+		color: $font-c;
+		margin-top: 20px;
+	}
+}
+/**用户登录end******/
 .news_item {
 	background-color: white;
 	border-bottom: 1px solid #f0f2f7;

+ 2 - 3
pages.json

@@ -5,9 +5,8 @@
 	"pages": [{
 			"path": "pages/login/login",
 			"style": {
-				"navigationBarTitleText": ""
-				//登录
-				//"navigationStyle":"custom"
+				"navigationBarTitleText": "用户登录",
+				"navigationStyle":"custom"
 			}
 		}, {
 			"path": "pages/login/chooseRole",

+ 84 - 132
pages/login/login.vue

@@ -1,83 +1,81 @@
 <template>
-	<view>
-		<view class="remain">
-			<h1>账号登录</h1>
+	<view class="login">
+		<view class="app_top">
+			<view class="welcome">
+				<view class="desc">您好,</view>
+				<view class="desc">欢迎来到边民互市贸易</view>
+			</view>
+			<image src="../../static/images/my.png" mode="widthFix" class="img"></image>
 		</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="password">
-					<view class="form-input">
-						<u-input v-model="form.password" type="password" placeholder='请输入密码' :clearable='false' />
-					</view>
-				</u-form-item>
-			</u-form>
-			<view style="font-size: 13px;">忘记密码?</view>
-			<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="toRegister()">还没有账号?马上<text class="register_btn blue-class">注册</text>
-				</view>
+		<view class="dk">
+			<view class="bg">
+				<text class="icon">&#xe8b9;</text>
+				<input type="number" v-model="form.phone" placeholder="请输入手机号" />
 			</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="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="toRegister()">注册</button>
 		</view>
 	</view>
 </template>
 
 <script>
-	export default {
-		data() {
-			return {
-				form: {
-					phone: '',
-					password: ''
-				},
-				rules: {
-					phone: [{
-							required: true,
-							message: '请输入手机号',
-							trigger: 'blur,change'
+export default {
+	data() {
+		return {
+			show: true,
+			form: {
+				phone: '',
+				password: ''
+			},
+			rules: {
+				phone: [
+					{
+						required: true,
+						message: '请输入手机号',
+						trigger: 'blur,change'
+					},
+					{
+						// 自定义验证函数,见上说明
+						validator: (rule, value, callback) => {
+							// 上面有说,返回true表示校验通过,返回false表示不通过
+							// uni.$u.test.mobile()就是返回true或者false的
+							// return uni.$u.test.mobile(value);
 						},
-						{
-							// 自定义验证函数,见上说明
-							validator: (rule, value, callback) => {
-								// 上面有说,返回true表示校验通过,返回false表示不通过
-								// uni.$u.test.mobile()就是返回true或者false的
-								// return uni.$u.test.mobile(value);
-							},
-							message: '手机号码不正确',
-							// 触发器可以同时用blur和change
-							trigger: ['change', 'blur'],
-						}
-					],
-					password: [{
+						message: '手机号码不正确',
+						// 触发器可以同时用blur和change
+						trigger: ['change', 'blur']
+					}
+				],
+				password: [
+					{
 						required: true,
 						message: '请输入密码',
 						trigger: 'blur,change'
-					}]
-				},
-				radioLabel: "",
-				value: ["1"],
-			}
-		},
-		onReady() {
-			this.$refs.uForm.setRules(this.rules);
-		},
-		methods: {
-			submit() {
-				this.$refs.uForm.validate().then(res => {
+					}
+				]
+			},
+			radioLabel: '',
+			value: ['1']
+		};
+	},
+	methods: {
+		submit() {
+			this.$refs.uForm
+				.validate()
+				.then(res => {
 					let value = this.value;
 					if (value.length == 0) {
 						this.$common.toast('请先同意协议');
@@ -87,74 +85,28 @@
 						if (resp.code == 200) {
 							let data = resp.data;
 							uni.setStorageSync('token', data.tokenInfo.tokenValue);
-							uni.setStorageSync('info', data.appUser)
-							uni.setStorageSync('menu', data.per_list)
-							this.$common.toBar('/pages/index/index')
+							uni.setStorageSync('info', data.appUser);
+							uni.setStorageSync('menu', data.per_list);
+							this.$common.toBar('/pages/index/index');
 						}
-					})
-				}).catch(errors => {
-					uni.$u.toast('校验失败')
+					});
 				})
-			},
-			toRegister() {
-				this.$common.to('/pages/login/chooseRole')
-			},
-			getAgreement(id) {
-				this.$common.to('/pages/login/userAgreement?id='+id)
-			}
+				.catch(errors => {
+					uni.$u.toast('校验失败');
+				});
+		},
+		toRegister() {
+			this.$common.to('/pages/login/chooseRole');
+		},
+		getAgreement(id) {
+			this.$common.to('/pages/login/userAgreement?id=' + id);
 		}
 	}
+};
 </script>
 
 <style lang="scss">
-	page {
-		background-color: #fff;
-		padding: 30px;
-	}
-
-	.remain {
-		margin: 30rpx 150rpx 0;
-		text-align: center;
-	}
-
-	.wel {
-		margin-top: 10px;
-	}
-
-	.form {
-		// margin: 0 30px;
-		height: 200px;
-		// display: flex;
-		// align-items: center;
-		// justify-content: center;
-	}
-
-	.form-input {
-		width: 100%;
-		background-color: #f5f5f5;
-		margin-top: 10rpx;
-		border-radius: 20rpx;
-		border: none;
-	}
-
-	.btn {
-		margin: 25px 10px;
-	}
-
-	.tip {
-		margin-top: 30px;
-		text-align: center;
-		font-size: 14px;
-	}
-
-	.blue-class {
-		color: #55aaff;
-		cursor: pointer;
-	}
-
-	.register_btn {
-
-		text-decoration: underline;
-		margin-left: 0.5em;
-	}
-</style>
+page {
+	background-color: white;
+}
+</style>