时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
481 B

  1. <template>
  2. <!-- 暂无内容-->
  3. <view class="padding-xl margin-top-xl">
  4. <view class="flex justify-center">
  5. <image src="@/static/images/mescroll-empty.png" mode="widthFix" class="no-content-img"></image>
  6. </view>
  7. <text class="block text-center margin-top">暂无数据</text>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .no-content-img{
  20. width: 300rpx;
  21. height: 300rpx;
  22. }
  23. </style>