|
@@ -0,0 +1,84 @@
|
|
|
+<template >
|
|
|
+ <view>
|
|
|
+ <view class="logo">
|
|
|
+ <image class="img" src="@/assets/img/logo.png" mode=""></image>
|
|
|
+ </view>
|
|
|
+ <!-- 手机号/密码 -->
|
|
|
+ <view class="input-box">
|
|
|
+ <input class="tel-input" type="text" placeholder="请输入手机号码" >
|
|
|
+ <input class="password-input" type="password" placeholder="请输入密码">
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <button class="login-disable" >登录</button>
|
|
|
+ <button class="login-disable login" >登录</button>
|
|
|
+
|
|
|
+ <view class="reset">
|
|
|
+ 联系园区管家重置密码
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ page{
|
|
|
+ background-color: #fff;
|
|
|
+ padding-top: 160rpx;
|
|
|
+ }
|
|
|
+ .logo{
|
|
|
+ margin: 0 auto;
|
|
|
+ width: 160rpx;
|
|
|
+ height: 160rpx;
|
|
|
+ border-radius: 16px;
|
|
|
+ background: linear-gradient(180deg, rgba(31,85,255,1) 0%,rgba(39,171,255,1) 100%);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ .img{
|
|
|
+
|
|
|
+ width: 112rpx;
|
|
|
+ height: 112rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+.input-box{
|
|
|
+ padding: 0 58rpx;
|
|
|
+ margin-top: 112rpx;
|
|
|
+ .tel-input,.password-input{
|
|
|
+ border-radius: 50px;
|
|
|
+ background-color: rgba(248,248,248,1);
|
|
|
+ color: rgba(16,16,16,1);
|
|
|
+ height: 100rpx;
|
|
|
+ line-height: 100rpx;
|
|
|
+ padding: 0 48rpx;
|
|
|
+ margin-bottom: 40rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+.login-disable{
|
|
|
+ margin: 80rpx 56rpx 40rpx;
|
|
|
+ border-radius: 100rpx;
|
|
|
+ background-color: rgba(223,223,223,1);
|
|
|
+ color: rgba(255, 255, 255, 1);
|
|
|
+}
|
|
|
+.login{
|
|
|
+ background-color: rgba(27,119,251,1);
|
|
|
+}
|
|
|
+
|
|
|
+.reset{
|
|
|
+ color: rgba(119,119,119,1);
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+</style>
|