码迷,mamicode.com
首页 > 移动开发 > 详细

uniapp简单的登录页面布局

时间:2021-01-11 11:21:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   ima   port   export   lang   image   NPU   size   pass   

技术图片

<template>
	<view class="login">
		<view class="content-wrapper">
			<view class="title">
				<h1>欢迎使用考试系统</h1>
			</view>
			<view class="login-form">
				<view class="login-form-items">
					<view class="login-form-items-title">手机号</view>
					<input type="text" class="login-input" placeholder="手机号" />
				</view>

				<view class="login-form-items">
					<view class="login-form-items-title">登录密码</view>
					<input type="password" class="login-input" placeholder="请输入登录密码" />
				</view>

				<view class="login-form-items">
					<view class="login-form-items-title">验证码</view>
					<input type="text" class="login-input" placeholder="请输入验证码" />
					<view class="captcha-wrapper">
						<img src="../../static/captcha.jpg"></img>
					</view>
				</view>
			</view>
		</view>
		<div class="submit-wrapper">
			<button type="primary" class="login-btn">登录</button>
		</div>
	</view>
</template>

<script>
	export default {
		data() {
			return {

			};
		}
	}
</script>

<style lang="scss">
	page {
		background: #F4F5F6;
	}

	.login {
		.content-wrapper {
			width: 100%;

			.title {
				margin-top: 35rpx;
				width: 100%;
				margin-bottom: 10px;

				h1 {
					border: 0px;
					width: 50%;
					margin: 0 auto;
					text-align: center;
					border-bottom: 1px solid #E3E3E3;
					height: 50px;
					line-height: 50px;
					font-size: 17px;
					overflow: hidden;
					font-weight: 400;
				}
			}

			.login-form {
				margin: 20px 10px 20px 15px;
				background: #FFFFFF;

				.login-form-items {
					padding: 15px 10px;
					border-bottom: 1px solid #F3F4F5;
					position: relative;
					display: -webkit-flex;
					display: flex;

					.login-form-items-title {
						width: 30%;
						line-height: 22px;
						height: 22px;
						flex-shrink: 0;
					}

					.login-input {
						width: 100%
					}

					img {
						width: auto;
						height: auto;
						max-width: 100%;
						max-height: 100%;
					}
				}
			}
		}

		.submit-wrapper {
			padding: 10px;
			padding-top: 10px;
		}

	}
</style>

uniapp简单的登录页面布局

标签:pre   ima   port   export   lang   image   NPU   size   pass   

原文地址:https://www.cnblogs.com/AlexanderZhao/p/14253803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!