diff --git a/src/api/harmonic-boot/cockpit/cockpit.ts b/src/api/harmonic-boot/cockpit/cockpit.ts index afddff2..acd50c5 100644 --- a/src/api/harmonic-boot/cockpit/cockpit.ts +++ b/src/api/harmonic-boot/cockpit/cockpit.ts @@ -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 + }) +} + diff --git a/src/api/harmonic-boot/luckyexcel.ts b/src/api/harmonic-boot/luckyexcel.ts index f36f066..d0c2836 100644 --- a/src/api/harmonic-boot/luckyexcel.ts +++ b/src/api/harmonic-boot/luckyexcel.ts @@ -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' }) } diff --git a/src/api/system-boot/dictTree.ts b/src/api/system-boot/dictTree.ts index 2967fc2..cfb20be 100644 --- a/src/api/system-boot/dictTree.ts +++ b/src/api/system-boot/dictTree.ts @@ -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 }) }