index.vue 754 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="youwei-trace-page" :style="{ height: `calc(100vh - ${tabBarHeight}px)` }">
  3. <empty
  4. image="https://birdseye-img.sysuimars.com/birdseye-look-mini/custom-empty-image.png"
  5. image-size="80"
  6. description="该页面正在升级,敬请期待..."
  7. />
  8. </div>
  9. </template>
  10. <script setup>
  11. import { computed } from "vue";
  12. import { useStore } from "vuex";
  13. import { Empty } from "vant";
  14. const store = useStore();
  15. const tabBarHeight = computed(() => store.state.home.tabBarHeight);
  16. </script>
  17. <style scoped lang="scss">
  18. .youwei-trace-page {
  19. width: 100%;
  20. height: 100%;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. box-sizing: border-box;
  25. }
  26. </style>