| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <view class="page-box">
- <view class="img-box">
- <image src="https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/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" @click.stop="getMemberInfo">确认</view>
- </view>
- </template>
- <script>
- import {getMemberInfo} from "@/api/user";
- import tools from "@/service/tools";
- export default {
- data() {
- return {
- timeServe: null
- };
- },
- mounted() {
- this.timeServe = setInterval(() => {
- this.getMemberInfo();
- }, 5000)
- },
- methods: {
- getMemberInfo() {
- getMemberInfo().then((res) => {
- if (res.code === 1) {
- if (res.data.status === 1) {
- clearInterval(this.timeServe)
- uni.setStorageSync('receivingType',res.data.receivingType)
- uni.setStorageSync('enteringType',res.data.enteringType)
- uni.reLaunch({
- url: '/pages/index/index'
- });
- }
- }else {
- tools.error(res.msg)
- }
- })
- },
- },
- }
- </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>
|