2
0

修正字典数据

This commit is contained in:
lai
2025-01-16 14:22:47 +08:00
parent 5fad65960c
commit c0c912f08b
5 changed files with 24 additions and 7 deletions

View File

@@ -36,7 +36,17 @@ export const doDeleteDict = (dictId: string | number) => {
};
/**
* 查询字典类型详细
* @param dictId 字典编号
* @returns object
*/
export function doGetType(dictId: string | number) {
return request({
url: `/system/dict/type/${dictId}`,
method: 'get',
});
}
/**