noData.vue 559 B

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