Files
dmt-modelLibrary/web/src/pages/app/appState.ts
2026-05-23 09:11:46 +08:00

17 lines
345 B
TypeScript

import type { DictionaryItem, Folder } from "../../types";
export const appState = {
selectedFolderId: null as number | null,
selectedFolderName: "",
folders: [] as Folder[],
brands: [] as DictionaryItem[],
types: [] as DictionaryItem[],
filters: {
brandId: "",
typeId: "",
keyword: ""
},
page: 1,
pageSize: 12
};