modal.js 851 B

1234567891011121314151617181920212223242526272829303132333435
  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. menu: false, // 快捷菜单弹框
  14. advHistory: [], // 广告弹框记录
  15. lastTimer: {
  16. // 短信验证码计时器,为了防止刷新请求做了持久化
  17. smsLogin: 0,
  18. changeMobile: 0,
  19. resetPassword: 0,
  20. changePassword: 0,
  21. }
  22. }),
  23. persist: {
  24. enabled: true,
  25. strategies: [
  26. {
  27. key: 'modal-store',
  28. paths: ['lastTimer', 'advHistory'],
  29. },
  30. ],
  31. },
  32. });
  33. export default modal;