Ver Fonte

no message

WIN-20230912WHV\Administrator há 1 ano atrás
pai
commit
82f59a05b3
2 ficheiros alterados com 46 adições e 3 exclusões
  1. 7 1
      pages.json
  2. 39 2
      pages/login/await-audit.vue

+ 7 - 1
pages.json

@@ -53,6 +53,12 @@
         "name": "注册",
         "path": "pages/login/register",
         "query": ""
-		}]
+		},
+      {
+        "name": "审核",
+        "path": "pages/login/await-audit",
+        "query": ""
+      }
+    ]
 	}
 }

+ 39 - 2
pages/login/await-audit.vue

@@ -1,6 +1,11 @@
 <template>
-  <view>
-
+  <view class="page-box">
+        <view class="img-box">
+          <image src="/static/img/login/await_audit.png"  class="await-img" mode="widthFix"></image>
+        </view>
+    <view class="await-status text-color-333 sys-size-36 sys-weight-600">已提交</view>
+    <view class="await-msg text-color-333 sys-size-30 sys-weight-400">请耐心等待审核</view>
+    <view class="await-but sys-radius-100 sys-background-dominant sys-size-30 text-color-fff sys-weight-500">确认</view>
   </view>
 </template>
 
@@ -13,5 +18,37 @@ export default {
 </script>
 
 <style lang="scss">
+.page-box{
+  min-height: 100vh;
+  background-image: url("https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/app-serve/2024-4-17/gvbst5vy0m.png?imageMogr2/quality/20");
+  background-repeat: no-repeat;
+  background-size: 100% auto;
+  .img-box{
+    padding-top: 360rpx;
+    display: flex;
+    justify-content: center;
+    .await-img{
+      margin: 0 auto;
+      width: 200rpx;
+      height: 200rpx;
+    }
+
+  }
+  .await-status{
+    text-align: center;
+    margin-top: 30rpx;
+  }
+  .await-msg{
+    text-align: center;
+    margin-top: 14rpx;
+  }
+  .await-but{
+    width: 330rpx;
+    height: 80rpx;
+    line-height: 80rpx;
+    margin: 48rpx auto;
+    text-align: center;
+  }
+}
 
 </style>