123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="cmain">
- <view class="icon"></view>
- <view class="title">您的资料已经提交审核,</view>
- <view class="desc">请耐心等待。</view>
- <button class="btn">返回首页</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- }
- };
- </script>
- <style lang="scss">
- .cmain {
- text-align: center;
- padding: 40px;
- color: $font-c;
- .icon {
- font-size: 150px;
- }
- .title {
- margin-bottom: 5px;
- }
- .desc {
- margin-top: -5px;
- }
- .btn {
- margin-top: 30px;
- }
- }
- </style>
|