You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
3.3 KiB
148 lines
3.3 KiB
import $store from '@/sheep/store';
|
|
import $helper from '@/sheep/helper';
|
|
import dayjs from 'dayjs';
|
|
import { ref } from 'vue';
|
|
import test from '@/sheep/helper/test.js';
|
|
import $api from '@/sheep/api';
|
|
// import sheep from '@/sheep';
|
|
|
|
// 打开授权弹框
|
|
export function showAuthModal(type = 'accountLogin') {
|
|
const modal = $store('modal');
|
|
if (modal.auth !== '') {
|
|
closeAuthModal();
|
|
setTimeout(() => {
|
|
modal.$patch((state) => {
|
|
state.auth = type;
|
|
});
|
|
}, 100);
|
|
} else {
|
|
modal.$patch((state) => {
|
|
state.auth = type;
|
|
});
|
|
}
|
|
}
|
|
|
|
// 关闭授权弹框
|
|
export function closeAuthModal() {
|
|
$store('modal').$patch((state) => {
|
|
state.auth = '';
|
|
});
|
|
// setTimeout(() => {
|
|
// sheep.$router.back();
|
|
// }, 200);
|
|
}
|
|
|
|
// 打开分享弹框
|
|
export function showShareModal() {
|
|
$store('modal').$patch((state) => {
|
|
state.share = true;
|
|
});
|
|
}
|
|
|
|
// 关闭分享弹框
|
|
export function closeShareModal() {
|
|
$store('modal').$patch((state) => {
|
|
state.share = false;
|
|
});
|
|
}
|
|
|
|
// 打开快捷菜单
|
|
export function showMenuTools() {
|
|
$store('modal').$patch((state) => {
|
|
state.menu = true;
|
|
});
|
|
}
|
|
|
|
// 关闭快捷菜单
|
|
export function closeMenuTools() {
|
|
$store('modal').$patch((state) => {
|
|
state.menu = false;
|
|
});
|
|
}
|
|
|
|
// 发送短信验证码 60秒
|
|
export function getSmsCode(event, mobile = '') {
|
|
const modalStore = $store('modal');
|
|
console.log(modalStore, 'modalStore', event);
|
|
const lastSendTimer = modalStore.lastTimer[event];
|
|
|
|
if (typeof lastSendTimer === 'undefined') {
|
|
$helper.toast('短信发送事件错误');
|
|
return;
|
|
}
|
|
|
|
const duration = dayjs().unix() - lastSendTimer;
|
|
const canSend = duration >= 60;
|
|
|
|
if (!canSend) {
|
|
$helper.toast('请稍后再试');
|
|
return;
|
|
}
|
|
|
|
if (!test.mobile(mobile)) {
|
|
$helper.toast('手机号码格式不正确');
|
|
return;
|
|
}
|
|
const changeEvent = {
|
|
changeMobile: 'changemobile',
|
|
smsLogin: 'mobilelogin',
|
|
resetPassword: 'resetpwd',
|
|
smsRegister: 'register',
|
|
smsScore: 'score',
|
|
}
|
|
|
|
// 发送验证码 + 更新上次发送验证码时间
|
|
if (changeEvent.hasOwnProperty(event)) {
|
|
let eventData = changeEvent[event]
|
|
$api.app.sendSms({
|
|
mobile: mobile,
|
|
event: eventData,
|
|
shareInfo: uni.getStorageSync('shareLog') || {},
|
|
}).then((res) => {
|
|
if (res.code === 1) {
|
|
modalStore.$patch((state) => {
|
|
state.lastTimer[event] = dayjs().unix();
|
|
});
|
|
}
|
|
});
|
|
} else {
|
|
$helper.toast('短信发送事件错误');
|
|
}
|
|
}
|
|
|
|
// 获取短信验证码倒计时 -- 60秒
|
|
export function getSmsTimer(event, mobile = '') {
|
|
const modalStore = $store('modal');
|
|
const lastSendTimer = modalStore.lastTimer[event];
|
|
|
|
if (typeof lastSendTimer === 'undefined') {
|
|
$helper.toast('短信发送事件错误');
|
|
return;
|
|
}
|
|
|
|
const duration = ref(dayjs().unix() - lastSendTimer - 60);
|
|
const canSend = duration.value >= 0;
|
|
|
|
if (canSend) {
|
|
return '获取验证码';
|
|
}
|
|
|
|
if (!canSend) {
|
|
setTimeout(() => {
|
|
duration.value++;
|
|
}, 1000);
|
|
return -duration.value.toString() + ' 秒';
|
|
}
|
|
}
|
|
|
|
// 记录广告弹框历史
|
|
export function saveAdvHistory(adv) {
|
|
const modal = $store('modal');
|
|
|
|
modal.$patch((state) => {
|
|
if (!state.advHistory.includes(adv.src)) {
|
|
state.advHistory.push(adv.src);
|
|
}
|
|
});
|
|
}
|
|
|