noData.vue 337 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="container">
  3. <img class="img" src="@/static/images/noData.png" />
  4. 暂无数据
  5. </view>
  6. </template>
  7. <script></script>
  8. <style lang="scss" scoped>
  9. .container {
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. padding-bottom: 65rpx;
  14. .img {
  15. margin-top: 160rpx;
  16. width: 480rpx;
  17. }
  18. }
  19. </style>