| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <template>
- <view class="container">
- <view class="body">
- <!-- 输入框区域 -->
- <view class="body_row mt-40">
- 姓名
- <input class="row_input" type="text" placeholder="请输入姓名" placeholder-style="color:#CCCCCC" />
- </view>
- <view class="body_row mt-30">
- 编号
- <input class="row_input" type="text" placeholder="请输入编号" placeholder-style="color:#CCCCCC" />
- </view>
- <!-- 确定按钮区域 -->
- <view class="body_btn">确认</view>
- </view>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
- onLoad(() => {})
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- background-color: #f1f6fe;
- .body {
- position: relative;
- padding: 0 20rpx;
- margin-top: 20rpx;
- height: calc(100vh - 20rpx);
- background-color: #fff;
- .body_row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 90rpx;
- font-size: 28rpx;
- .row_input {
- box-sizing: border-box;
- padding: 0 30rpx;
- width: 628rpx;
- height: 90rpx;
- border-radius: 15rpx;
- background-color: #f2f2f2;
- }
- }
- .mt-40 {
- margin-top: 40rpx;
- }
- .mt-30 {
- margin-top: 30rpx;
- }
- .body_btn {
- position: absolute;
- bottom: 150rpx;
- left: 227rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 297rpx;
- height: 100rpx;
- color: #fff;
- font-size: 32rpx;
- border-radius: 8rpx;
- background-color: #1e7dfb;
- }
- }
- }
- </style>
|