增加字典数据

This commit is contained in:
jiangs 2025-05-17 23:50:33 +08:00
parent f095134578
commit 57dd3c04f8

View File

@ -7,4 +7,13 @@ export function queryComDictListService(query) {
method: 'get', method: 'get',
params: query params: query
}) })
}
//增加字典数据
export function addComDictService(data) {
return request({
url: '/comdict/add',
method: 'post',
data
})
} }