| 123456789101112131415161718192021222324252627282930 |
- <template>
- <view>
- <image src="../static/promote/images/sta.png" class="img"></image>
- <view class="sta">审核中</view>
- <view class="tip">您的申请信息已提交,预计1-3个工作日内审核完成</view>
- <view @click="back()" class="btn">我知道了</view>
- </view>
- </template>
- <script>
- const app = getApp();
- export default {
- data() {
- return {};
- },
- onLoad(options) {},
- methods: {
- back() {
- uni.navigateBack();
- }
- }
- };
- </script>
- <style>
- @import './status.css';
- </style>
|