empty.vue 397 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="empty-box">
  3. <image class="empty-img" src="../../static/images/empty.png" mode="aspectFit"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name:"empty",
  9. data() {
  10. return {
  11. };
  12. }
  13. }
  14. </script>
  15. <style scoped lang="scss">
  16. .empty-box{
  17. width: 100%;
  18. text-align: center;
  19. .empty-img{
  20. max-width: 100%;
  21. width: 720rpx;
  22. height: 351rpx;
  23. }
  24. }
  25. </style>