noData.vue 328 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="content">
  3. <img class="img" src="@/static/images/8.png" />
  4. <view class="info">暂无数据</view>
  5. </view>
  6. </template>
  7. <script setup></script>
  8. <style lang="scss" scoped>
  9. .content {
  10. padding: 150rpx 30rpx;
  11. text-align: center;
  12. .img {
  13. height: 508rpx;
  14. }
  15. .info {
  16. color: #999999;
  17. }
  18. }
  19. </style>