index.vue 631 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="page-empty" :style="{ 'height': height, 'margin-top': marginTop }">
  3. <u-empty
  4. text="暂无数据"
  5. textSize="26rpx"
  6. width="332rpx"
  7. height="332rpx"
  8. mode="order"
  9. :icon="''"
  10. ></u-empty>
  11. </view>
  12. </template>
  13. <script setup>
  14. // 定义组件属性
  15. const props = defineProps({
  16. height: {
  17. type: String,
  18. default: '100vh'
  19. },
  20. marginTop: {
  21. type: String,
  22. default: '0px'
  23. },
  24. imgBase: {
  25. type: String,
  26. default: ''
  27. }
  28. })
  29. </script>
  30. <style scoped lang="scss">
  31. .page-empty {
  32. width: 100%;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. </style>