This commit is contained in:
Zyronon
2025-12-03 01:37:04 +08:00
parent 1603bbeca4
commit 9779c7402e
275 changed files with 3271 additions and 1446 deletions

View File

@@ -72,6 +72,8 @@ export function getDefaultDict(val: Partial<Dict> = {}): Dict {
en_name: '',
category_id: null,
is_default: false,
update: false,
cover: '',
...val,
words: shallowReactive(val.words ?? []),

View File

@@ -178,6 +178,8 @@ export interface Dict extends DictResource {
createdBy?: string
category_id?: number
is_default?: boolean
update?: boolean
cover?: string
}
export interface ArticleItem {