2
0

修复BUG

This commit is contained in:
lai
2025-02-14 19:21:51 +08:00
parent 28ab9dceeb
commit e3032bb850
2 changed files with 1 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ export const doEditDict = (data: DictSubmitModel) => {
export const doDeleteDict = (dictId: string | number) => {
return request({
url: `/system/dict/type/${dictId}`,
method: 'post'
method: 'delete'
});
};