index.vue 664 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="page-empty" :style="{'height':height,'margin-top':marginTop}">
  3. <u-empty text="暂无数据" textSize="26rpx" width="332rpx" height="332rpx" mode="order" icon="http://cdn.uviewui.com/uview/empty/order.png"></u-empty>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props:{
  9. height:{
  10. typeof: String,
  11. default: '100vh'
  12. },
  13. marginTop:{
  14. typeof: String,
  15. default: '0px'
  16. }
  17. },
  18. data(){
  19. return {
  20. }
  21. },
  22. methods:{
  23. }
  24. }
  25. </script>
  26. <style scoped lang="less">
  27. .page-empty{
  28. width: 100%;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. }
  33. </style>