initial commit

This commit is contained in:
zhangshun
2026-05-23 09:11:46 +08:00
commit 5d08480921
42 changed files with 10615 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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
};