RuoYi
2026-03-22 b33ea72445dc8ade95de9a1330f24391ec6e6564
ruoyi-ui/src/layout/components/Settings/index.vue
@@ -139,9 +139,6 @@
          key: 'tagsViewPersist',
          value: val
        })
        if (!val) {
          this.$cache.local.remove('tags-view-visited')
        }
      }
    },
    tagsView: {
@@ -250,6 +247,9 @@
    },
    saveSetting() {
      this.$modal.loading("正在保存到本地,请稍候...")
      if (!this.tagsViewPersist) {
        this.$cache.local.remove('tags-view-visited')
      }
      this.$cache.local.set(
        "layout-setting",
        `{
@@ -269,6 +269,7 @@
    },
    resetSetting() {
      this.$modal.loading("正在清除设置缓存并刷新,请稍候...")
      this.$cache.local.remove('tags-view-visited')
      this.$cache.local.remove("layout-setting")
      setTimeout("window.location.reload()", 1000)
    }