| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <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>
- <script>
- export default {
- data() {
- return {};
- }
- }
- </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>
|