Explorar o código

refactor: tabs

xiaoxian521 %!s(int64=3) %!d(string=hai) anos
pai
achega
aca6a667f3
Modificáronse 3 ficheiros con 22 adicións e 0 borrados
  1. 1 0
      public/serverConfig.json
  2. 20 0
      src/store/modules/multiTabs.ts
  3. 1 0
      types/global.d.ts

+ 1 - 0
public/serverConfig.json

@@ -3,6 +3,7 @@
   "Title": "PureAdmin",
   "FixedHeader": true,
   "HiddenSideBar": false,
+  "MultiTabsCache": false,
   "KeepAlive": true,
   "Locale": "zh",
   "Layout": "vertical",

+ 20 - 0
src/store/modules/multiTabs.ts

@@ -0,0 +1,20 @@
+import { defineStore } from "pinia";
+import { store } from "/@/store";
+import { getConfig } from "/@/config";
+
+export const useMultiTabsStore = defineStore({
+  id: "pure-multiTabs",
+  state: () => ({
+    multiTabsCache: getConfig().MultiTabsCache
+  }),
+  getters: {
+    getMultiTabsCache() {
+      return this.multiTabsCache;
+    }
+  },
+  actions: {}
+});
+
+export function useMultiTabsStoreHook() {
+  return useMultiTabsStore(store);
+}

+ 1 - 0
types/global.d.ts

@@ -87,6 +87,7 @@ declare global {
     Title?: string;
     FixedHeader?: boolean;
     HiddenSideBar?: boolean;
+    MultiTabsCache?: boolean;
     KeepAlive?: boolean;
     Locale?: string;
     Layout?: string;