useModal.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. import $store from '@/sheep/store';
  2. import $helper from '@/sheep/helper';
  3. import dayjs from 'dayjs';
  4. import {
  5. ref,
  6. computed
  7. } from 'vue';
  8. import test from '@/sheep/helper/test.js';
  9. import AuthUtil from '@/sheep/api/member/auth';
  10. import sheep from '@/sheep';
  11. import SignInApi from '@/sheep/api/member/signin';
  12. let time = 30;
  13. let timer = null;
  14. // 登录
  15. async function onSign() {
  16. console.log("onSign")
  17. const {
  18. code,
  19. data
  20. } = await SignInApi.createSignInRecord();
  21. if (code === 0) {
  22. showSignUpModal(data)
  23. }
  24. if (timer) {
  25. clearInterval(timer);
  26. }
  27. uni.setStorageSync('isRun', false);
  28. uni.setStorageSync('isSign', true);
  29. }
  30. // 每日重置签到状态
  31. export function resetSignStatusIfNeeded() {
  32. const today = new Date().toISOString().slice(0, 10); // 获取当前日期,格式为 YYYY-MM-DD
  33. const lastCheckDate = uni.getStorageSync('lastCheckDate');
  34. if (today !== lastCheckDate) {
  35. // 如果跨天了,重置 isSign
  36. uni.setStorageSync('isSign', false);
  37. uni.setStorageSync('lastCheckDate', today); // 更新最后检查的日期
  38. }
  39. }
  40. // 自动签到
  41. export function autoSign() {
  42. resetSignStatusIfNeeded();
  43. const isLogin = computed(() => sheep.$store('user').isLogin);
  44. if (isLogin.value) {
  45. // 倒计时是否在进行
  46. // console.log("autoSign执行了")
  47. uni.setStorageSync('isRun', true);
  48. if (uni.getStorageSync('isRun') && !uni.getStorageSync('isSign')) {
  49. // console.log('开始倒计时')
  50. // 开始一个新的定时器
  51. timer = setInterval(() => {
  52. time--;
  53. // console.log("time", time);
  54. if (uni.getStorageSync('isSign') || !isLogin.value){
  55. // console.log('已经签到了或'者已经登出了 不可以在签到')
  56. cancelAutoSign()
  57. }
  58. if (time <= 0 && !uni.getStorageSync('isSign')) {
  59. clearInterval(timer);
  60. onSign();
  61. }
  62. }, 1000);
  63. }
  64. }
  65. }
  66. // 取消自动签到
  67. export function cancelAutoSign() {
  68. // console.log("autoSign取消了")
  69. if (timer) {
  70. clearInterval(timer);
  71. }
  72. time = 30;
  73. uni.setStorageSync('isRun', false);
  74. }
  75. // 打开签到弹框
  76. export function showSignUpModal(obj) {
  77. $store('modal').$patch((state) => {
  78. state.signUp = true;
  79. state.signUpInfo = obj;
  80. });
  81. }
  82. // 关闭签到弹框
  83. export function colseSignUpModal() {
  84. $store('modal').$patch((state) => {
  85. state.signUp = false;
  86. });
  87. }
  88. // 打开获得佣金弹窗
  89. export function showWalletModal(obj) {
  90. $store('modal').$patch((state) => {
  91. state.getWallet = true;
  92. state.getWalletInfo = obj;
  93. });
  94. }
  95. // 关闭获得佣金弹窗
  96. export function colseWalletModal() {
  97. $store('modal').$patch((state) => {
  98. state.getWallet = false;
  99. });
  100. }
  101. // 打开授权弹框
  102. export function showAuthModal(type = 'accountLogin', isActive = 'accountLogin') {
  103. const modal = $store('modal');
  104. if (modal.auth !== '') {
  105. closeAuthModal();
  106. setTimeout(() => {
  107. modal.$patch((state) => {
  108. state.auth = type;
  109. state.isActive = isActive;
  110. });
  111. }, 100);
  112. } else {
  113. modal.$patch((state) => {
  114. state.auth = type;
  115. state.isActive = isActive;
  116. });
  117. }
  118. }
  119. // 关闭授权弹框
  120. export function closeAuthModal() {
  121. $store('modal').$patch((state) => {
  122. state.auth = '';
  123. });
  124. }
  125. // 打开分享弹框
  126. export function showShareModal(spuId = 0) {
  127. $store('modal').$patch((state) => {
  128. state.share = true;
  129. state.shareInfo.spuId = spuId;
  130. });
  131. }
  132. // 关闭分享弹框
  133. export function closeShareModal() {
  134. $store('modal').$patch((state) => {
  135. state.share = false;
  136. });
  137. }
  138. // 打开快捷菜单
  139. export function showMenuTools() {
  140. $store('modal').$patch((state) => {
  141. state.menu = true;
  142. });
  143. }
  144. // 关闭快捷菜单
  145. export function closeMenuTools() {
  146. $store('modal').$patch((state) => {
  147. state.menu = false;
  148. });
  149. }
  150. // 发送短信验证码 60秒
  151. export function getSmsCode(event, mobile) {
  152. const modalStore = $store('modal');
  153. const lastSendTimer = modalStore.lastTimer[event];
  154. // console.log(lastSendTimer)
  155. if (typeof lastSendTimer === 'undefined') {
  156. $helper.toast('短信发送事件错误');
  157. return;
  158. }
  159. const duration = dayjs().unix() - lastSendTimer;
  160. const canSend = duration >= 60;
  161. if (!canSend) {
  162. $helper.toast('请稍后再试');
  163. return;
  164. }
  165. // 只有 mobile 非空时才校验。因为部分场景(修改密码),不需要输入手机
  166. if (mobile && !test.mobile(mobile)) {
  167. $helper.toast('手机号码格式不正确');
  168. return;
  169. }
  170. // 发送验证码 + 更新上次发送验证码时间
  171. let scene = -1;
  172. switch (event) {
  173. case 'resetPassword':
  174. scene = 4;
  175. break;
  176. case 'changePassword':
  177. scene = 3;
  178. break;
  179. case 'changeMobileOld':
  180. scene = 2;
  181. break;
  182. case 'changeMobileNew':
  183. scene = 5;
  184. break;
  185. case 'smsLogin':
  186. scene = 1;
  187. break;
  188. }
  189. AuthUtil.sendSmsCode(mobile, scene).then((res) => {
  190. if (res.code === 0) {
  191. modalStore.$patch((state) => {
  192. state.lastTimer[event] = dayjs().unix();
  193. });
  194. }
  195. });
  196. }
  197. // 获取短信验证码倒计时 -- 60秒
  198. export function getSmsTimer(event, mobile = '') {
  199. const modalStore = $store('modal');
  200. const lastSendTimer = modalStore.lastTimer[event];
  201. if (typeof lastSendTimer === 'undefined') {
  202. $helper.toast('短信发送事件错误');
  203. return;
  204. }
  205. const duration = ref(dayjs().unix() - lastSendTimer - 60);
  206. const canSend = duration.value >= 0;
  207. if (canSend) {
  208. return '获取验证码';
  209. }
  210. if (!canSend) {
  211. setTimeout(() => {
  212. duration.value++;
  213. }, 1000);
  214. return -duration.value.toString() + ' 秒';
  215. }
  216. }
  217. // 记录广告弹框历史
  218. export function saveAdvHistory(adv) {
  219. const modal = $store('modal');
  220. modal.$patch((state) => {
  221. if (!state.advHistory.includes(adv.imgUrl)) {
  222. state.advHistory.push(adv.imgUrl);
  223. }
  224. });
  225. }