普通招生

This commit is contained in:
guochunsi
2026-01-15 19:06:50 +08:00
parent 761fb9bdc3
commit 3cab9fab59
46 changed files with 1561 additions and 1033 deletions

View File

@@ -1,29 +1,54 @@
import { dict } from '/@/stores/dict';
import { getDicts } from '/@/api/admin/dict';
import { getDictsByTypes } from '/@/api/admin/dict';
import { ref, toRefs } from 'vue';
/**
* 获取字典数据
* 支持批量获取,自动使用批量 API 减少请求次数
*/
export function useDict(...args: any): any {
const res = ref({});
return (() => {
// 初始化所有字典类型为空数组
args.forEach((dictType: String) => {
// @ts-ignore
res.value[dictType] = [];
});
// 分离已缓存和未缓存的字典类型
const cachedDicts: string[] = [];
const uncachedDicts: string[] = [];
args.forEach((dictType: String) => {
const dicts = dict().getDict(dictType);
if (dicts) {
// @ts-ignore
res.value[dictType] = dicts;
cachedDicts.push(dictType as string);
} else {
getDicts(dictType).then((resp) => {
uncachedDicts.push(dictType as string);
}
});
// 如果有未缓存的字典,使用批量 API 获取
if (uncachedDicts.length > 0) {
getDictsByTypes(uncachedDicts).then((resp) => {
uncachedDicts.forEach((dictType: string) => {
// @ts-ignore
res.value[dictType] = resp.data.map((p: any) => ({ label: p.label, value: p.value, elTagType: p.listClass, elTagClass: p.cssClass }));
const dictData = resp.data[dictType] || [];
// @ts-ignore
res.value[dictType] = dictData.map((p: any) => ({
label: p.label,
value: p.value,
elTagType: p.listClass,
elTagClass: p.cssClass
}));
// @ts-ignore
dict().setDict(dictType, res.value[dictType]);
});
});
}
});
return toRefs(res.value);
})();
}