iframe.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * Copyright [2022] [https://www.xiaonuo.vip]
  3. * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
  4. * 1.请不要删除和修改根目录下的LICENSE文件。
  5. * 2.请不要删除和修改Snowy源码头部的版权声明。
  6. * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
  7. * 4.分发源码时候,请注明软件出处 https://www.xiaonuo.vip
  8. * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
  9. * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
  10. */
  11. import { defineStore } from 'pinia'
  12. export const iframeStore = defineStore({
  13. id: 'iframe',
  14. state: () => ({
  15. iframeList: []
  16. }),
  17. getters: {},
  18. actions: {
  19. setIframeList(route) {
  20. this.iframeList = []
  21. this.iframeList.push(route)
  22. },
  23. pushIframeList(route) {
  24. const target = this.iframeList.find((item) => item.path === route.path)
  25. if (!target) {
  26. this.iframeList.push(route)
  27. }
  28. },
  29. removeIframeList(route) {
  30. this.iframeList.forEach((item, index) => {
  31. if (item.path === route.path) {
  32. this.iframeList.splice(index, 1)
  33. }
  34. })
  35. },
  36. refreshIframe(route) {
  37. this.iframeList.forEach((item) => {
  38. if (item.path === route.path) {
  39. const url = route.meta.url
  40. item.meta.url = ''
  41. setTimeout(() => {
  42. item.meta.url = url
  43. }, 200)
  44. }
  45. })
  46. },
  47. clearIframeList() {
  48. this.iframeList = []
  49. }
  50. }
  51. })