接口路径调整

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

@@ -234,4 +234,22 @@ export function netEventTable(data: any) {
})
}
// 分页查询暂降事件
export function pageEvent(data: any) {
return request({
url: '/cs-harmonic-boot/event/pageEvent',
method: 'post',
data: data
})
}
// 暂态事件波形分析
export function analyseWave(data: any) {
return request({
url: '/cs-harmonic-boot/event/analyseWave',
method: 'get',
params: data
})
}

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'
})
}

View File

@@ -88,8 +88,9 @@ export const updateStatistical = (data: any) => {
// 单位绑定
export function codeDicTree(data: any) {
return createAxios({
url: '/system-boot/dictTree/codeDicTree',
method: 'get',
// url: '/system-boot/dictTree/codeDicTree',
url: '/system-boot/dictTree/queryByCodeList',
method: 'post',
params: data
})
}