parkingLists.vue 389 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="wrap">
  3. <u-empty src="/static/img/empty.png" icon-size="335" text="正在建设中" color="#878787" mode="search"></u-empty>
  4. </view>
  5. </template>
  6. <script>
  7. export default{
  8. data(){
  9. return{
  10. }
  11. },
  12. onLoad(){
  13. },
  14. methods:{
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .wrap{margin-top: 20vh;}
  20. @import url("./parkingLists.scss");
  21. </style>