修改现场反馈问题

This commit is contained in:
GGJ
2025-01-03 16:11:31 +08:00
parent 3094ac94c0
commit 439a129589
14 changed files with 92 additions and 39 deletions

View File

@@ -50,7 +50,7 @@ export const getDictTreeById = (id: any) => {
return createAxios({
url: '/system-boot/dictTree/queryById',
method: 'POST',
data:form
data: form
})
}
@@ -80,7 +80,7 @@ export const addDictTree = (data: any) => {
// 编辑统计指标配置项
export const updateStatistical = (data: any) => {
return createAxios({
url: '/system-boot/dictTree//update',
url: '/system-boot/dictTree/update',
method: 'PUT',
data: data
})
@@ -88,7 +88,7 @@ export const updateStatistical = (data: any) => {
// 单位绑定
export function codeDicTree(data: any) {
return createAxios({
url: '/system-boot/dictTree//codeDicTree',
url: '/system-boot/dictTree/codeDicTree',
method: 'get',
params: data
})