modal.js 712 B

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