| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view style="background-color: #fff;min-height: 100vh;">
- <view class="default">
- <image src="/static/common/empty.png" mode="heightFix"></image>
- <view style="margin-top: 20rpx;">
- <text>您的信息正在审核中...</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- },
- onLoad() {
- },
- methods: {}
- }
- </script>
- <style lang="scss">
- .default {
- text-align: center;
- position: fixed;
- left: 50%;
- top: 40%;
- transform: translate(-50%, -50%);
- }
- .default text {
- color: #AAAAAA;
- }
- .default image {
- height: 280 rpx;
- display: inline-block;
- }
- .empty-wrap {
- background-color: #FFFFFF;
- min-height: 100vh;
- }
- </style>
|