| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <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: 160rpx;
- display: inline-block;
- }
- .empty-wrap{
- background-color: #FFFFFF;
- min-height: 100vh;
- }
- </style>
|