You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
814 B

  1. <template>
  2. <view class="container">
  3. <view class="content">
  4. <image
  5. class="no-data-image"
  6. src="https://d31zlh4on95l9h.cloudfront.net/images/f5a9bd32c81bc7cca47252b51357c12f.png"
  7. mode="aspectFit"
  8. ></image>
  9. <text class="no-data-text">暂无数据~</text>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. .container {
  25. width: 100%;
  26. height: 100vh;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. background-color: #f5f5f5;
  31. }
  32. .content {
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. }
  38. .no-data-image {
  39. width: 200px;
  40. height: 200px;
  41. margin-bottom: 20px;
  42. }
  43. .no-data-text {
  44. font-size: 16px;
  45. color: #999999;
  46. text-align: center;
  47. }
  48. </style>