index.vue 630 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="page-empty adffcacjc" :style="{'margin-top':marginTop}">
  3. <u-empty :text="text" textSize="32rpx" text-color="#999999" width="332rpx" height="332rpx" mode="order" :icon="imgBase+'recharge_empty.png'"></u-empty>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props:{
  9. text:{
  10. typeof:String,
  11. default:'暂无数据'
  12. },
  13. marginTop:{
  14. typeof: String,
  15. default: '0px'
  16. }
  17. },
  18. data(){
  19. return {
  20. imgBase:this.$imgBase
  21. }
  22. },
  23. methods:{
  24. }
  25. }
  26. </script>
  27. <style scoped lang="less">
  28. .page-empty{
  29. width: 100%;
  30. height: 100%;
  31. }
  32. </style>