修改现场反馈问题
This commit is contained in:
@@ -15,7 +15,7 @@ export const dicDelete = (id: string) => {
|
||||
|
||||
export function dicAdd(data: any) {
|
||||
return createAxios({
|
||||
url: '/system-boot/dictTree//add',
|
||||
url: '/system-boot/dictTree/add',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
@@ -23,8 +23,8 @@ export function dicAdd(data: any) {
|
||||
|
||||
export function dicUpdate(data: any) {
|
||||
return createAxios({
|
||||
url: '/system-boot/dictTree//update',
|
||||
url: '/system-boot/dictTree/update',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user