noData.vue 527 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="nodata">
  3. <image class="img" :src="$fileUrl() + '/noData.png'" mode="widthFix"></image>
  4. <view class="text">
  5. 啊哦,没有任何内容
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. </script>
  11. <style scoped lang="scss">
  12. .nodata {
  13. width: 100%;
  14. position: absolute;
  15. top: 50%;
  16. transform: translateY(-50%);
  17. .img {
  18. width: 80vw;
  19. margin: 0 auto;
  20. }
  21. .text {
  22. color: #999999;
  23. font-size: 16px;
  24. text-align: center;
  25. position: absolute;
  26. top: 75%;
  27. width: 100%;
  28. }
  29. }
  30. </style>