useModal.js 3.2 KB

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