no-none.vue 346 B

12345678910111213141516171819
  1. <template>
  2. <view class="content empty flex-center">
  3. <image class="" src="/static/no-more.png" mode="widthFix"></image>
  4. <!-- <view class="col">暂无信息</view> -->
  5. </view>
  6. </template>
  7. <script>
  8. </script>
  9. <style>
  10. .empty{
  11. flex-direction: column;
  12. }
  13. .empty image {
  14. width:300px;
  15. height:180rpx;
  16. margin: 100rpx 0 30rpx 0;
  17. }
  18. </style>