diff --git a/src/manifest.json b/src/manifest.json index 601b24e..f98a4dc 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -4,7 +4,7 @@ "package" : "com.eam.uniapp", "description" : "", "versionName" : "1.0.0", - "versionCode" : "100", + "versionCode" : 1, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/src/pages/login.vue b/src/pages/login.vue index 098dfc3..56cef80 100644 --- a/src/pages/login.vue +++ b/src/pages/login.vue @@ -1,233 +1,249 @@ \ No newline at end of file +page { + background-color: #ffffff; +} + +.normal-login-container { + width: 100%; + + .logo-content { + width: 100%; + font-size: 40rpx; + padding: 50rpx 80rpx 0rpx; + + .title { + font-weight: bold; + color: #000000; + } + } + + .box { + position: relative; + } + + .box-shadow { + box-shadow: 0px -10rpx 16rpx rgba(64, 158, 254, 0.5); + width: 100%; + position: absolute; + height: 30rpx; + border-radius: 30rpx 30rpx 0px 0px; + } + + .logo-img { + background-color: #fafcff; + height: calc(var(--status-bar-height) + 400rpx); + position: relative; + + .icon { + position: absolute; + top: calc(var(--status-bar-height) + 20rpx); + left: 40rpx; + } + + .logo-title { + position: absolute; + left: 50rpx; + top: calc(var(--status-bar-height) + 80rpx); + z-index: 11; + + view { + &:nth-child(1) { + color: #409eff; + font-weight: bold; + font-size: 36rpx; + } + + &:nth-child(2) { + color: #999999; + font-size: 24rpx; + } + } + } + + image { + width: 75%; + display: block; + position: absolute; + bottom: 0px; + right: 0px; + } + } + + .login-form-content { + margin: 40rpx auto; + width: 80%; + + .input-item-label { + font-size: 30rpx; + // font-weight: bold; + color: #888888; + } + + .input-item { + margin: 20rpx auto 40rpx; + border: 1px solid #e4e4e4; + padding: 0px 20rpx; + height: 90rpx; + + .icon { + font-size: 38rpx; + margin-left: 20rpx; + color: #999; + } + + .input { + width: 100%; + font-size: 28rpx; + line-height: 40rpx; + text-align: left; + } + } + + .login-btn { + margin-top: 80rpx; + height: 80rpx; + background: #409eff; + color: white; + } + } + + .xieyi { + color: #333; + margin-top: 40rpx; + font-size: 24rpx; + } + + .easyinput { + width: 100%; + } +} + +.login-code-img { + height: 90rpx; +} +