useModal.js 5.8 KB

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