verifyCode.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import type { FormInstance, FormItemProp } from "element-plus";
  2. import { cloneDeep } from "lodash-unified";
  3. import { ref } from "vue";
  4. const isDisabled = ref(false);
  5. const timer = ref(null);
  6. const text = ref("");
  7. export const useVerifyCode = () => {
  8. const start = async (
  9. formEl: FormInstance | undefined,
  10. props: FormItemProp,
  11. time = 60
  12. ) => {
  13. if (!formEl) return;
  14. const initTime = cloneDeep(time);
  15. await formEl.validateField(props, isValid => {
  16. if (isValid) {
  17. clearInterval(timer.value);
  18. timer.value = setInterval(() => {
  19. if (time > 0) {
  20. text.value = `${time}`;
  21. isDisabled.value = true;
  22. time -= 1;
  23. } else {
  24. text.value = "";
  25. isDisabled.value = false;
  26. clearInterval(timer.value);
  27. time = initTime;
  28. }
  29. }, 1000);
  30. }
  31. });
  32. };
  33. const end = () => {
  34. text.value = "";
  35. isDisabled.value = false;
  36. clearInterval(timer.value);
  37. };
  38. return {
  39. isDisabled,
  40. timer,
  41. text,
  42. start,
  43. end
  44. };
  45. };