Files
admin-sjzx/src/api/system-boot/dictTree.ts

84 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-02-19 13:44:32 +08:00
import createAxios from '@/utils/request'
// 字典树接口
export function queryByCode(code: string) {
let form = new FormData()
form.append('code', code)
return createAxios({
url: '/system-boot/dictTree/queryByCode',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: form
})
}
2024-05-11 17:09:36 +08:00
// 字典树接口2
export function queryByAllCode() {
let form = new FormData()
// form.append('code', code)
return createAxios({
url: '/system-boot/dictTree/queryTree',
method: 'GET',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
// data: form
})
}
2024-02-19 13:44:32 +08:00
// 字典树接口通过code
export function queryCsDictTree(pid: string) {
let form = new FormData()
form.append('pid', pid)
return createAxios({
url: '/system-boot/dictTree/query',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: form
})
}
// 字典树接口通过id
export function queryByid(id: string) {
let form = new FormData()
form.append('id', id)
return createAxios({
url: '/system-boot/dictTree/queryByid',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: form
})
}
//新增字典树数据
export const addDictTree = (data: any) => {
return createAxios({
url: '/system-boot/dictTree/add',
method: 'post',
data: data
})
}
// 编辑统计指标配置项
2024-03-27 20:29:51 +08:00
export const updateStatistical = (data:any) => {
2024-02-19 13:44:32 +08:00
return createAxios({
url: '/system-boot/dic/update',
method: 'PUT',
data: data
})
}
2024-03-27 20:29:51 +08:00
// 单位绑定
export function codeDicTree(data:any) {
return createAxios({
url: "/system-boot/dic/codeDicTree",
method: "get",
params: data,
});
}