#
whycq
2023-02-09 8cac2c51eae3647e5198286cd87e71d7f7046243
pages/login/login.vue
@@ -1,7 +1,39 @@
<template>
   <div class="main">
   </div>
   <view class="main">
      <view class="head">
         <view class="logo">
            <image src="../../static/img/logo.png" mode="aspectFit"></image>
         </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>
      <view class="submit">
         <view class="" style="width: 400rpx;">
            <button type="primary" size="default">登录</button>
         </view>
      </view>
   </view>
</template>
<script lang="ts">
@@ -10,10 +42,52 @@
   console.log(s)
</script>
<style>
<style lang="less">
   .display-grid {
      display: grid;
   }
   .main {
      height: 100%;
      width: 100%;
      background-color: aquamarine;
      display: grid;
      grid-template-columns: 1fr;
      justify-items: center;
   }
   .head {
      min-height: 400rpx;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      justify-items: center;
      align-items: center;
      .logo {
      }
   }
   .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;
      }
   }
   .submit {
      position: fixed;
      width: 100%;
      bottom: 100rpx;
      display: grid;
      grid-template-columns: 1fr;
      justify-items: center;
   }
</style>