#
whycq
2023-10-08 8d410c9a8ac1c47a490cb35ec77634a6995ff6fc
pages/LoginDemo/LoginDemo.vue
@@ -21,13 +21,24 @@
            登录
         </view>
      </view>
      <!-- 设置弹窗区域 -->
      <uni-popup ref="settings" type="dialog" style="height: 100%;width: 100%;background-color: aqua;">
      <uni-popup ref="settings" type="dialog">
         <view class="popup">
            <!-- 标题 -->
            <view class="title">配置</view>
            <scroll-view style="height: 20vh;">
               <view style="background-color: aqua;margin: 4px;height: 40px;width: 20px;" v-for="it in 10"></view>
            </scroll-view>
            <view class="">
               <view class="">
                  取消
               </view>
               <view class="">
                  确认
               </view>
            </view>
            <view class="popup-item">
               <view class="popup-item-left">IP:</view>
               <view class="popup-item-right"><input type="text" v-model="url.ip"></view>
@@ -42,6 +53,8 @@
            </view>
         </view>
      </uni-popup>
      
      <!-- 版本号 -->
      <!-- #ifdef APP-PLUS -->
@@ -216,7 +229,16 @@
   }
   
   .popup {
      width: 70vw;
      height: 40vh;
      background-color: #fff;
      width: 100%;
      border-radius: 16px;
   }
   .title {
      height: 10vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
   }
</style>