123456789101112131415161718192021222324252627 |
- <template>
- <view class="content empty flex-center">
- <image src="../images/no-more2.png" mode="widthFix"></image>
- <view class="col">程序加载中~</view>
- </view>
- </template>
- <script>
-
- </script>
- <style>
- page{
- height: 100%;
- }
- .empty{
- color: #999;
- flex-direction: column;
- padding-top:200rpx;
- }
- .empty image {
- width:300px;
- height:180rpx;
- padding-bottom: 20rpx;
- /* margin: 100rpx 0 30rpx 0; */
- }
- </style>
|