modal.js 984 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import { defineStore } from 'pinia';
  2. const modal = defineStore({
  3. id: 'modal',
  4. state: () => ({
  5. auth: '', // 授权弹框 accountLogin|smsLogin|resetPassword|changeMobile|changePassword|changeUsername
  6. isActive: '',
  7. share: false, // 分享弹框
  8. shareInfo: {
  9. spuId: 0,
  10. }, // 分享弹框信息
  11. signUp:false, // 签到弹框
  12. signUpInfo:{}, // 签到弹框信息
  13. getWallet:false, // 获得积分/身价弹窗
  14. getWalletInfo:{
  15. points:0,
  16. socialStatus:0,
  17. }, // 获得积分/身价弹窗信息
  18. menu: false, // 快捷菜单弹框
  19. advHistory: [], // 广告弹框记录
  20. lastTimer: {
  21. // 短信验证码计时器,为了防止刷新请求做了持久化
  22. smsLogin: 0,
  23. changeMobile: 0,
  24. resetPassword: 0,
  25. changePassword: 0,
  26. }
  27. }),
  28. persist: {
  29. enabled: true,
  30. strategies: [
  31. {
  32. key: 'modal-store',
  33. paths: ['lastTimer', 'advHistory'],
  34. },
  35. ],
  36. },
  37. });
  38. export default modal;