noData.vue 648 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="container">
  3. <view class="content">
  4. <image src="/static/common/noData.png" mode="widthFix"></image>
  5. <view>{{showText}}</view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name:"noData",
  12. props:{
  13. showText: {
  14. type: String,
  15. default: '暂无数据'
  16. },
  17. },
  18. data() {
  19. return{}
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. .content {
  25. padding: 100rpx 0 120rpx;
  26. display: flex;
  27. align-items: center;
  28. justify-content: center;
  29. flex-direction: column;
  30. image {
  31. width: 300rpx;
  32. display: block;
  33. }
  34. view {
  35. font-size: 28rpx;
  36. color: #999999;
  37. margin-top: 20rpx;
  38. }
  39. }
  40. </style>