Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

2 роки тому
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="content-wrapper">
  3. <view class="picture-wrapper">
  4. <image class="d-img" :src="`${$imgUrl}common/search.png`"></image>
  5. </view>
  6. <view class="title-wrapper">
  7. <view class="title">
  8. {{title}}
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script setup lang="ts">
  14. defineProps({
  15. //参照https://vkuviewdoc.fsq.pub/components/empty.html说明,也可自定义图片路径
  16. title: {
  17. type: String,
  18. default: '暂未搜索到相关业务信息'
  19. },
  20. })
  21. </script>
  22. <style scoped lang="scss">
  23. .content-wrapper {
  24. position: fixed;
  25. top: 0;
  26. bottom: 0;
  27. left: 0;
  28. right: 0;
  29. background-color: #EEF7F7;
  30. .d-img {
  31. width: 334rpx;
  32. height: 237rpx;
  33. }
  34. .picture-wrapper {
  35. margin-top: 200rpx;
  36. display: flex;
  37. justify-content: center;
  38. }
  39. .title-wrapper {
  40. margin-top: 20rpx;
  41. display: flex;
  42. justify-content: center;
  43. }
  44. }
  45. </style>