12345678910111213141516171819 |
- <template>
- <view class="content empty flex-center">
- <image class="" src="/static/no-more.png" mode="widthFix"></image>
- <!-- <view class="col">暂无信息</view> -->
- </view>
- </template>
- <script>
- </script>
- <style>
- .empty{
- flex-direction: column;
- }
- .empty image {
- width:300px;
- height:180rpx;
- margin: 100rpx 0 30rpx 0;
- }
- </style>
|