useModal.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. import $store from '@/sheep/store';
  2. import $helper from '@/sheep/helper';
  3. import dayjs from 'dayjs';
  4. import { ref } from 'vue';
  5. import test from '@/sheep/helper/test.js';
  6. import AuthUtil from '@/sheep/api/member/auth';
  7. // 打开授权弹框
  8. export function showAuthModal(type = 'smsLogin') {
  9. console.log(type)
  10. const modal = $store('modal');
  11. if (modal.auth !== '') {
  12. closeAuthModal();
  13. setTimeout(() => {
  14. modal.$patch((state) => {
  15. state.auth = type;
  16. });
  17. }, 100);
  18. } else {
  19. modal.$patch((state) => {
  20. state.auth = type;
  21. });
  22. }
  23. }
  24. // 关闭授权弹框
  25. export function closeAuthModal() {
  26. $store('modal').$patch((state) => {
  27. state.auth = '';
  28. });
  29. }
  30. // 打开分享弹框
  31. export function showShareModal() {
  32. $store('modal').$patch((state) => {
  33. state.share = true;
  34. });
  35. }
  36. // 关闭分享弹框
  37. export function closeShareModal() {
  38. $store('modal').$patch((state) => {
  39. state.share = false;
  40. });
  41. }
  42. // 打开快捷菜单
  43. export function showMenuTools() {
  44. $store('modal').$patch((state) => {
  45. state.menu = true;
  46. });
  47. }
  48. // 关闭快捷菜单
  49. export function closeMenuTools() {
  50. $store('modal').$patch((state) => {
  51. state.menu = false;
  52. });
  53. }
  54. // 发送短信验证码 60秒
  55. export function getSmsCode(event, mobile) {
  56. const modalStore = $store('modal');
  57. const lastSendTimer = modalStore.lastTimer[event];
  58. if (typeof lastSendTimer === 'undefined') {
  59. $helper.toast('短信发送事件错误');
  60. return;
  61. }
  62. const duration = dayjs().unix() - lastSendTimer;
  63. const canSend = duration >= 60;
  64. if (!canSend) {
  65. $helper.toast('请稍后再试');
  66. return;
  67. }
  68. // 只有 mobile 非空时才校验。因为部分场景(修改密码),不需要输入手机
  69. if (mobile && !test.mobile(mobile)) {
  70. $helper.toast('手机号码格式不正确');
  71. return;
  72. }
  73. // 发送验证码 + 更新上次发送验证码时间
  74. let scene = -1;
  75. switch (event) {
  76. case 'resetPassword':
  77. scene = 4;
  78. break;
  79. case 'changePassword':
  80. scene = 3;
  81. break;
  82. case 'changeMobile':
  83. scene = 2;
  84. break;
  85. case 'smsLogin':
  86. scene = 1;
  87. break;
  88. }
  89. AuthUtil.sendSmsCode(mobile, scene).then((res) => {
  90. if (res.code === 0) {
  91. modalStore.$patch((state) => {
  92. state.lastTimer[event] = dayjs().unix();
  93. });
  94. }
  95. });
  96. }
  97. // 获取短信验证码倒计时 -- 60秒
  98. export function getSmsTimer(event, mobile = '') {
  99. const modalStore = $store('modal');
  100. const lastSendTimer = modalStore.lastTimer[event];
  101. if (typeof lastSendTimer === 'undefined') {
  102. $helper.toast('短信发送事件错误');
  103. return;
  104. }
  105. const duration = ref(dayjs().unix() - lastSendTimer - 60);
  106. const canSend = duration.value >= 0;
  107. if (canSend) {
  108. return '获取验证码';
  109. }
  110. if (!canSend) {
  111. setTimeout(() => {
  112. duration.value++;
  113. }, 1000);
  114. return -duration.value.toString() + ' 秒';
  115. }
  116. }
  117. // 记录广告弹框历史
  118. export function saveAdvHistory(adv) {
  119. const modal = $store('modal');
  120. modal.$patch((state) => {
  121. if (!state.advHistory.includes(adv.imgUrl)) {
  122. state.advHistory.push(adv.imgUrl);
  123. }
  124. });
  125. }