diff --git a/locales/en_US.json b/locales/en_US.json index 932d7ef..b6969c2 100644 --- a/locales/en_US.json +++ b/locales/en_US.json @@ -125,7 +125,8 @@ "setting": "System settings", "userCenter": "Personal Center", "accountSetting": "User settings", - "cascader": "Administrative region selection" + "cascader": "Administrative region selection", + "dict": "Dictionary example" }, "http": { "400": "Syntax error in the request", diff --git a/locales/zh_CN.json b/locales/zh_CN.json index a292a7a..d25c6ad 100644 --- a/locales/zh_CN.json +++ b/locales/zh_CN.json @@ -152,6 +152,7 @@ "menuSetting": "菜单设置", "userCenter": "个人中心", "about": "关于", - "cascader": "省市区联动" + "cascader": "省市区联动", + "dict": "字典示例" } } diff --git a/src/router/routes.static.ts b/src/router/routes.static.ts index 3418296..942c369 100644 --- a/src/router/routes.static.ts +++ b/src/router/routes.static.ts @@ -404,4 +404,35 @@ export const staticRoutes: AppRoute.RowRoute[] = [ id: 40, pid: null, }, + { + name: 'cascader', + path: '/demo/cascader', + title: '省市区联动', + requiresAuth: true, + icon: 'icon-park-outline:add-subset', + componentPath: '/demo/cascader/index.vue', + id: 41, + pid: 13, + }, + { + name: 'docmentsNova', + path: '/docments/nova', + title: 'Nova docs', + requiresAuth: true, + icon: 'local:logo', + href: 'https://nova-admin-docs.netlify.app/', + componentPath: '2333333', + id: 42, + pid: 24, + }, + { + name: 'dict', + path: '/demo/dict', + title: '字典示例', + requiresAuth: true, + icon: 'icon-park-outline:book-one', + componentPath: '/demo/dict/index.vue', + id: 43, + pid: 13, + }, ] diff --git a/src/service/api/system.ts b/src/service/api/system.ts index 77d007f..d56b86c 100644 --- a/src/service/api/system.ts +++ b/src/service/api/system.ts @@ -14,13 +14,13 @@ export function fetchRoleList() { return request.Get>('/role/list') } -// 获取所有字典列表 -export function fetchDictList() { - return request.Get>('/dict/list') -} - -// 获取所有字典列表 -export function fetchDictContent(id: number) { - const params = { id } - return request.Get>('/dict/contentById', { params }) +/** + * 请求获取字典列表 + * + * @param code - 字典编码,用于筛选特定的字典列表 + * @returns 返回的字典列表数据 + */ +export function fetchDictList(code?: string) { + const params = { code } + return request.Get>('/dict/list', { params }) } diff --git a/src/store/dict.ts b/src/store/dict.ts new file mode 100644 index 0000000..5a99d5e --- /dev/null +++ b/src/store/dict.ts @@ -0,0 +1,47 @@ +import { fetchDictList } from '@/service' + +interface DictState { + dict: { [key: string]: Entity.Dict[] } +} + +export const useDictStore = defineStore('dict-store', { + state: (): DictState => { + return { + dict: {}, + } + }, + actions: { + async dict(code: string) { + const targetDict = await this.getDict(code) + + return { + list: () => targetDict, + mapByValue: () => Object.fromEntries(targetDict.map(({ value, ...data }) => [value, data])), + mapByLabel: () => Object.fromEntries(targetDict.map(({ label, ...data }) => [label, data])), + } + }, + async getDict(code: string) { + const isExist = Reflect.has(this.dict, code) + + if (isExist) { + return this.dict[code] + } + else { + return await this.getDictByNet(code) + } + }, + async getDictByNet(code: string) { + const { data, isSuccess } = await fetchDictList(code) + if (isSuccess) { + Reflect.set(this.dict, code, data) + return data + } + else { + throw new Error(`Failed to get ${code} dictionary from network, check ${code} field or network`) + } + }, + }, + persist: { + storage: sessionStorage, + }, +}) diff --git a/src/store/index.ts b/src/store/index.ts index acb3543..1df836f 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -5,6 +5,7 @@ export * from './app/index' export * from './auth' export * from './router' export * from './tab' +export * from './dict' // 安装pinia全局状态库 export function installPinia(app: App) { diff --git a/src/typings/entities/dict.d.ts b/src/typings/entities/dict.d.ts index df772b3..23d5709 100644 --- a/src/typings/entities/dict.d.ts +++ b/src/typings/entities/dict.d.ts @@ -5,8 +5,9 @@ namespace Entity { interface Dict { id?: number - pid?: number - dictLabel?: string - dictValue?: number + isRoot?: 0 | 1 + code: string + label: string + value?: number } } diff --git a/src/views/demo/dict/index.vue b/src/views/demo/dict/index.vue new file mode 100644 index 0000000..aee1576 --- /dev/null +++ b/src/views/demo/dict/index.vue @@ -0,0 +1,89 @@ + + + + + diff --git a/src/views/setting/dictionary/components/DictContentModal.vue b/src/views/setting/dictionary/components/DictContentModal.vue new file mode 100644 index 0000000..be355b1 --- /dev/null +++ b/src/views/setting/dictionary/components/DictContentModal.vue @@ -0,0 +1,148 @@ + + + diff --git a/src/views/setting/dictionary/components/TableModal.vue b/src/views/setting/dictionary/components/DictModal.vue similarity index 88% rename from src/views/setting/dictionary/components/TableModal.vue rename to src/views/setting/dictionary/components/DictModal.vue index 6142e46..1b9cac8 100644 --- a/src/views/setting/dictionary/components/TableModal.vue +++ b/src/views/setting/dictionary/components/DictModal.vue @@ -19,8 +19,8 @@ const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoo const { bool: submitLoading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false) const formDefault: Entity.Dict = { - dictLabel: '', - dictValue: -1, + label: '', + code: '', } const formModel = ref({ ...formDefault }) @@ -35,7 +35,7 @@ const modalTitle = computed(() => { return `${titleMap[modalType.value]}${props.modalName}` }) -async function openModal(type: ModalType = 'add', data: any) { +async function openModal(type: ModalType = 'add', data?: any) { emit('open') modalType.value = type showModal() @@ -96,12 +96,12 @@ async function submitModal() { } const rules = { - dictLabel: { + label: { required: true, message: '请输入字典名称', trigger: 'blur', }, - dictValue: { + value: { required: true, message: '请输入字典值', trigger: 'blur', @@ -122,11 +122,11 @@ const rules = { }" > - - + + - - + +