index.vue 1019 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <script lang='ts' setup>
  2. import { computed, defineAsyncComponent, nextTick, onMounted, onUnmounted, ref, watch } from 'vue'
  3. import { useForgot } from './useForgot'
  4. const { stage } = useForgot()
  5. </script>
  6. <template>
  7. <div>
  8. <div class="w-1400px mx-auto">
  9. <div class="flex py-150px">
  10. <div class="w-50% h-full flex items-center mr-120px">
  11. <img
  12. src="~/assets/images/register_forgot.png"
  13. class="w-620px h-730px"
  14. srcset=""
  15. >
  16. <!-- <img
  17. v-else
  18. src="@/assets/images/icon-email-verity.png"
  19. class="w-550px h-480px"
  20. srcset=""
  21. > -->
  22. </div>
  23. <div class="w-50% h-full flex items-center">
  24. <business-forgot-stage-one v-if="stage === 1" />
  25. <business-forgot-stage-two v-if="stage === 2" />
  26. <business-forgot-stage-three v-if="stage === 3" />
  27. </div>
  28. </div>
  29. </div>
  30. <common-footer-guide />
  31. </div>
  32. </template>
  33. <style lang='less' scoped>
  34. </style>