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.

42 lines
655 B

3 months ago
  1. <template>
  2. <view class="empty-box">
  3. <image :src="urlDomain+'crmebimage/perset/staticImg/empty-box.png'"></image>
  4. <view class="txt">{{title}}</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default{
  9. props: {
  10. title: {
  11. type: String,
  12. default: '暂无记录',
  13. },
  14. },
  15. data(){
  16. return{
  17. urlDomain: this.$Cache.get("imgHost"),
  18. }
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. .empty-box{
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: center;
  27. align-items: center;
  28. margin-top: 200rpx;
  29. padding-bottom: 60rpx;
  30. image{
  31. width: 414rpx;
  32. height: 240rpx;
  33. }
  34. .txt{
  35. font-size: 26rpx;
  36. color: #999;
  37. }
  38. }
  39. </style>