noData.vue 313 B

123456789101112131415161718192021
  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. .img {
  14. margin-top: 160rpx;
  15. width: 480rpx;
  16. }
  17. }
  18. </style>