no-none.vue 351 B

123456789101112131415161718192021
  1. <template>
  2. <view class="content empty flex-center">
  3. <image class="" src="../images/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>