| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <!-- #ifdef APP -->
- <scroll-view style="flex:1">
- <!-- #endif -->
- <view v-if="stateNum == '1'" class="center-image-container">
- <view>
- <image class="center-image" style="width: 346rpx;height: 268rpx;" src="/static/other/shzm-1.png"
- mode="widthFix"></image>
- </view>
- <text class="miaos-2-box">您的信息已提交,平台正在审核中,请耐心等待~</text>
- </view>
- <view v-if="stateNum == '3'" class="center-image-container">
- <view class="shib-box">审核失败</view>
- <view class="ss-flex-2 shenz-box">
- <image style="width: 346rpx;height: 268rpx;" src="/static/other/shzm-3.png" mode="widthFix">
- </image>
- </view>
- <text class="miaos-2-box">您的信息有误,请重新提交~</text>
- <text class="miaos-2-box" style="color: #f74343;">审核备注:{{base_info}}</text>
- <button class="tij-box" style="background-color:#F78342; width: 50%;" type="default"
- @click="againForm">重新提交</button>
- </view>
- <!-- #ifdef APP -->
- </scroll-view>
- <!-- #endif -->
- </template>
- <script setup>
- import { ref } from 'vue';
- // //是否是待审核状态
- const stateNum = ref('1');
- const base_info = ref('')
- const againForm = () => {
- uni.navigateTo({ url: '/pages/login/merchantRecuitment' });
- };
- onLoad((event : OnLoadOptions) => {
- console.log(event, 'pages');
- stateNum.value = event?.["stateNum"] as String;
- base_info.value = event?.["remark"] as String;
- })
- </script>
- <style>
- .center-image-container {
- width: 100%;
- height: 50%;
- justify-content: space-around;
- align-items: center;
- }
- .miaos-2-box {
- margin: 20rpx 0;
- }
- </style>
|