From 93586255fc729e9d1c77ac4b24cd45abfda5a799 Mon Sep 17 00:00:00 2001 From: stt Date: Wed, 26 Nov 2025 13:11:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=B7=AF=E5=BE=84=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/harmonic-boot/cockpit/cockpit.ts | 18 ++++++++++++++++++ src/api/harmonic-boot/luckyexcel.ts | 12 ++++++++---- src/api/system-boot/dictTree.ts | 5 +++-- 3 files changed, 29 insertions(+), 6 deletions(-) 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 }) }