修改打包报错问题

This commit is contained in:
2026-01-16 18:24:09 +08:00
parent f8b618a13a
commit ba961c8bce
52 changed files with 13777 additions and 1828 deletions

View File

@@ -0,0 +1,13 @@
import request from '/@/utils/request';
/**
* 根据字典类型获取字典数据
* @param type 字典类型
*/
export const getDictByType = (type: string) => {
return request({
url: `/admin/dict/item/type/${type}`,
method: 'get',
});
};