opt:一期内容优化;

This commit is contained in:
2026-06-10 17:56:14 +08:00
parent eca0edad64
commit 02432faa17
27 changed files with 1500 additions and 480 deletions

View File

@@ -30,5 +30,43 @@ export function getValueByCode(code) {
method: 'post'
})
}
export function queryParam() {
return request({
url: '/api/param/queryParam',
method: 'get'
})
}
export default { add, edit, del, getValueByCode }
export function setParam(data) {
return request({
url: 'api/param/setParam',
method: 'post',
data
})
}
export function showDetail2(params) {
return request({
url: 'api/dict/showDetail2',
method: 'get',
params
})
}
export function showDetail3(params) {
return request({
url: 'api/dict/showDetail3',
method: 'get',
params
})
}
export function initDict(data) {
return request({
url: 'api/dict/initDict',
method: 'post',
data
})
}
export default { add, edit, del, getValueByCode, setParam, showDetail2, initDict, showDetail3 }