modal.js 697 B

1234567891011121314151617181920212223242526272829
  1. import { defineStore } from 'pinia';
  2. const modal = defineStore({
  3. id: 'modal',
  4. state: () => ({
  5. auth: '', // 授权弹框 accountLogin|smsLogin|resetPassword|changeMobile|changePassword|changeUsername
  6. share: false, // 分享弹框
  7. menu: false, // 快捷菜单弹框
  8. advHistory: [], // 广告弹框记录
  9. lastTimer: {
  10. // 短信验证码计时器,为了防止刷新请求做了持久化
  11. smsLogin: 0,
  12. changeMobile: 0,
  13. resetPassword: 0,
  14. changePassword: 0,
  15. }
  16. }),
  17. persist: {
  18. enabled: true,
  19. strategies: [
  20. {
  21. key: 'modal-store',
  22. paths: ['lastTimer', 'advHistory'],
  23. },
  24. ],
  25. },
  26. });
  27. export default modal;