接口路径调整

This commit is contained in:
stt
2025-11-26 13:11:56 +08:00
parent cf51ba9ff0
commit 93586255fc
3 changed files with 29 additions and 6 deletions

View File

@@ -3,7 +3,8 @@ import createAxios from '@/utils/request'
// 获取参数指标
export function getIndex() {
return createAxios({
url: '/harmonic-boot/customReport/reportChooseTree',
// url: '/harmonic-boot/customReport/reportChooseTree',
url: '/cs-harmonic-boot/customReport/reportChooseTree',
method: 'get'
})
}
@@ -19,7 +20,8 @@ export function updateTemplateActive(data) {
//获取报表模板 //部门树查询
export function getTemplateList(data:any) {
return createAxios({
url: '/harmonic-boot/customReport/getTemplateList',
// url: '/harmonic-boot/customReport/getTemplateList',
url: '/cs-harmonic-boot/customReport/getTemplateList',
// url:'/api3/harmonic-boot/customReport/getTemplateList',
method: 'post',
data
@@ -152,14 +154,16 @@ export function pageTable(data) {
//合格率报告
export function targetLimitChooseTree() {
return createAxios({
url: '/harmonic-boot/customReport/targetLimitChooseTree',
// url: '/harmonic-boot/customReport/targetLimitChooseTree',
url: '/cs-harmonic-boot/customReport/targetLimitChooseTree',
method: 'get'
})
}
//监测点指标
export function terminalChooseTree() {
return createAxios({
url: '/harmonic-boot/customReport/terminalChooseTree',
// url: '/harmonic-boot/customReport/terminalChooseTree',
url: '/cs-harmonic-boot/customReport/terminalChooseTree',
method: 'get'
})
}