empty.vue 880 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view :style="{ marginTop: top + 'px' }" class="flex-column-align-center marginB30">
  3. <image
  4. :src="ossurl.common.empty"
  5. webp
  6. style="width: 320rpx; height: 320rpx"
  7. :style="{ opacity: light ? 1 : 1 }"
  8. />
  9. <view class="marginT20 font4" :class="[light ? 'color-1' : 'color-888']">{{ title }}</view>
  10. </view>
  11. </template>
  12. <script>
  13. import ossurl from '@/utils/ossurl'
  14. export default {
  15. props: {
  16. top: {
  17. default: 52,
  18. type: Number
  19. },
  20. title: {
  21. default: '暂无数据',
  22. type: String
  23. },
  24. light: {
  25. default: false,
  26. type: Boolean
  27. }
  28. },
  29. data() {
  30. return {
  31. ossurl
  32. }
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .color-888 {
  38. color: #888888;
  39. }
  40. </style>