From da546f57355a9150fecb7d4bb28dce7fc1628b68 Mon Sep 17 00:00:00 2001
From: whycq <you@example.com>
Date: 星期三, 08 二月 2023 22:48:01 +0800
Subject: [PATCH] #
---
pages/login/login.vue | 71 +++++++++++++++++++++++++++++++++++
1 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/pages/login/login.vue b/pages/login/login.vue
new file mode 100644
index 0000000..b4686a7
--- /dev/null
+++ b/pages/login/login.vue
@@ -0,0 +1,71 @@
+<template>
+ <view class="head">
+ <view class="logo">
+
+ </view>
+ </view>
+ <view class="content">
+ <view class="input">
+ <view class="">
+
+ </view>
+ <view class="">
+ <input type="text">
+ </view>
+
+ </view>
+
+ <view class="input">
+ <view class="">
+
+ </view>
+ <view class="">
+ <input type="text">
+ </view>
+
+ </view>
+
+ </view>
+</template>
+
+<script lang="ts">
+// 杩欓噷缂栧啓ts浠g爜
+ let s:string = "123"
+ console.log(s)
+</script>
+
+<style lang="less">
+ .head {
+ height: 200rpx;
+ width: 100%;
+ background-color: aquamarine;
+ display: grid;
+ grid-template-columns: 1fr;
+ justify-items: center;
+ align-items: center;
+ .logo {
+ width: 10%;
+ height: 90%;
+ background-color: red;
+ }
+ }
+ .content {
+ height: 400rpx;
+ width: 100%;
+ margin-top: 10rpx;
+ background-color: bisque;
+ display: grid;
+ grid-template-columns: 1fr;
+ justify-items: center;
+ align-items: center;
+ .input {
+ width: 50%;
+ height: 30%;
+ background-color: #fff;
+ display: grid;
+ grid-template-columns: 1fr;
+ justify-items: center;
+ align-items: center;
+ }
+ }
+</style>
\ No newline at end of file
--
Gitblit v1.9.1