联调 自定义报表

This commit is contained in:
GGJ
2024-03-27 20:29:51 +08:00
parent 668fbed3ef
commit 45ba496361
19 changed files with 1228 additions and 32 deletions

View File

@@ -54,10 +54,18 @@ export const addDictTree = (data: any) => {
// 编辑统计指标配置项
export const updateStatistical = (data) => {
export const updateStatistical = (data:any) => {
return createAxios({
url: '/system-boot/dic/update',
method: 'PUT',
data: data
})
}
// 单位绑定
export function codeDicTree(data:any) {
return createAxios({
url: "/system-boot/dic/codeDicTree",
method: "get",
params: data,
});
}