feat: 新增很多页面

This commit is contained in:
2026-01-14 01:06:25 +08:00
parent d437b4eded
commit 18f0fbce15
46 changed files with 7926 additions and 10 deletions

View File

@@ -156,3 +156,15 @@ export function validateDictItemLabel(rule: any, value: any, callback: any, type
}
});
}
/**
* 批量查询字典数据
* @param types 字典类型数组
*/
export function queryDictByTypeList(types: string[]) {
return request({
url: '/admin/dict/queryDictByTypeList',
method: 'post',
data: types,
});
}