From 2682b706c99054e78c548c9624cc66634994441c Mon Sep 17 00:00:00 2001
From: whycq <10027870+whycq@user.noreply.gitee.com>
Date: 星期四, 09 二月 2023 14:14:47 +0800
Subject: [PATCH] #

---
 pages/login/login.vue |   88 +++++++++++++++++++++++++++++++++++++------
 1 files changed, 75 insertions(+), 13 deletions(-)

diff --git a/pages/login/login.vue b/pages/login/login.vue
index 22681f7..a512ca2 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -1,19 +1,81 @@
 <template>
-	<div class="main">
-		
-	</div>
+	<view class="head">
+		<view class="logo">
+			<image src="../../static/img/logo.png" mode="aspectFit"></image>
+		</view>
+	</view>
+	<view class="content">
+		<view class="input shadow-warp">
+
+
+		</view>
+
+		<!-- <view class="">
+
+		</view>
+		<view class="">
+			<input type="text">
+		</view> -->
+	</view>
+	<view class="submit">
+		<view class="" style="width: 400rpx;">
+			<button type="primary" size="default">鐧诲綍</button>
+		</view>
+
+	</view>
 </template>
 
-<script lang="ts">
-// 杩欓噷缂栧啓ts浠g爜
-	let s:string = "123"
-	console.log(s)
+<script setup lang="ts">
+	// 杩欓噷缂栧啓ts浠g爜
 </script>
 
-<style>
-	.main {
-		height: 100%;
-		width: 100%;
-		background-color: aquamarine;
+<style lang="less">
+	.display-grid {
+		display: grid;
 	}
-</style>
\ No newline at end of file
+
+	.head {
+		height: 400rpx;
+		width: 100%;
+		display: grid;
+		grid-template-columns: 1fr;
+		// background-color: aqua;
+		justify-items: center;
+		align-items: center;
+
+		.logo {
+			image {
+				height: 300rpx;
+			}
+		}
+	}
+
+	.content {
+		height: 400rpx;
+		width: 100%;
+		// background-color: bisque;
+		display: grid;
+		grid-template-columns: 1fr;
+		justify-items: center;
+		align-items: center;
+
+		.input {
+			padding: 50rpx;
+			border-radius: 6rpx;
+			background-color: #ffffff;
+			color: #666666;
+			margin-top: 30rpx;
+			width: 60%;
+			height: 0rpx;
+		}
+	}
+
+	.submit {
+		position: fixed;
+		width: 100%;
+		bottom: 200rpx;
+		display: grid;
+		grid-template-columns: 1fr;
+		justify-items: center;
+	}
+</style>

--
Gitblit v1.9.1