index.tsx 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import { Transition, defineComponent, onBeforeUnmount, onMounted, ref } from "vue";
  2. import styles from "./index.module.less";
  3. import icons from "./icons.json";
  4. import { handleFollowEnd, handleFollowStart } from "/src/view/follow-practice";
  5. export default defineComponent({
  6. name: "follow-model",
  7. setup() {
  8. const startBtn = ref(false);
  9. const endBtn = ref(false);
  10. onMounted(() => {
  11. startBtn.value = true;
  12. });
  13. onBeforeUnmount(() => {
  14. startBtn.value = false;
  15. });
  16. return () => (
  17. <>
  18. <Transition name="pop-center">
  19. {startBtn.value && (
  20. <div class={styles.startBtn} key="start">
  21. <img
  22. src={icons.start}
  23. onClick={() => {
  24. startBtn.value = false;
  25. endBtn.value = true;
  26. handleFollowStart();
  27. }}
  28. />
  29. </div>
  30. )}
  31. </Transition>
  32. <Transition name="pop-center">
  33. {endBtn.value && (
  34. <div class={styles.endBtn} key="end">
  35. <img
  36. src={icons.end}
  37. onClick={() => {
  38. startBtn.value = true;
  39. endBtn.value = false;
  40. handleFollowEnd();
  41. }}
  42. />
  43. </div>
  44. )}
  45. </Transition>
  46. </>
  47. );
  48. },
  49. });