Merge remote-tracking branch 'origin/master'

This commit is contained in:
weitang 2025-04-28 11:56:24 +08:00
commit 72267a9c9b
237 changed files with 2469 additions and 124 deletions

View File

@ -2,7 +2,7 @@ import request from '@/utils/request';
//获取所有角色 //获取所有角色
export function getAlarm (queryParams:any){ export function getAlarm (queryParams:any){
return request({ return request({
url: '/basedata/substation-device/getAlarmThresholdPage' , url: '/basedata/substation-device/getAlarmThresholdList' ,
method: 'get', method: 'get',
params:queryParams params:queryParams
}); });
@ -10,14 +10,14 @@ export function getAlarm (queryParams:any){
//获取所有角色 //获取所有角色
export function getSubstation (){ export function getSubstation (){
return request({ return request({
url: '/basedata/substation/getSubstationTree' , url: '/basedata/substation/getSubstationBayTree' ,
method: 'get', method: 'get',
}); });
} }
//批量修改警告阈值 //批量修改警告阈值
export function updateAlarm(params:any){ export function updateAlarm(params:any){
return request({ return request({
url: 'basedata/substation-device/updateBatchDevice' , url: 'basedata/substation-device/updateAlarmThreshold' ,
method: 'post', method: 'post',
data:params data:params
}); });

View File

@ -9,7 +9,7 @@ export function getTreefirst() {
//获取变电站信息 //获取变电站信息
export function getTreelist(params: any) { export function getTreelist(params: any) {
return request({ return request({
url: '/basedata/substation/getSubstationNaviTree', url: '/basedata/substation/getSubstationTree',
method: 'get', method: 'get',
params: params params: params
}); });
@ -17,9 +17,9 @@ export function getTreelist(params: any) {
//获取table表格 //获取table表格
export function getdevicedata(params: any) { export function getdevicedata(params: any) {
return request({ return request({
url: '/basedata/substation-device/getSubstationDevicePage', url: '/basedata/substation-device/getSubstationDeviceList',
method: 'get', method: 'post',
params: params data: params
}); });
} }
//获取所属主设备select //获取所属主设备select
@ -49,7 +49,7 @@ export function getaccType(params: any) {
//间隔下所属部件 //间隔下所属部件
export function getBayType(params: any) { export function getBayType(params: any) {
return request({ return request({
url: '/basedata/substation-maindevice/getComponentByCriteria', url: '/basedata/substation-maindevice/getComponentByBay',
method: 'get', method: 'get',
params: params params: params
}); });
@ -73,7 +73,7 @@ export function changeStatus(params: any) {
//修改点位 //修改点位
export function editPosition(params: any) { export function editPosition(params: any) {
return request({ return request({
url: '/basedata/substation-device/updateSubstationDevice', url: '/basedata/substation-device/updateSubstationDeviceById',
method: 'post', method: 'post',
data: params data: params
}); });
@ -81,7 +81,7 @@ export function editPosition(params: any) {
//删除 //删除
export function delPosition(params: any) { export function delPosition(params: any) {
return request({ return request({
url: '/basedata/substation-device/deleteSubstationDevice', url: '/basedata/substation-device/deleteSubstationDeviceById',
method: 'post', method: 'post',
params: params params: params
}); });
@ -132,7 +132,7 @@ export function getDeviceByType(params: any) {
//根据条件获取部件(分页) //根据条件获取部件(分页)
export function getComponentByBayPage(params: any) { export function getComponentByBayPage(params: any) {
return request({ return request({
url: '/basedata/substation-maindevice/getComponentPage', url: '/basedata/substation-maindevice/getComponentByBayPage',
method: 'get', method: 'get',
params: params params: params
}); });

View File

@ -3,7 +3,7 @@ import request from '@/utils/request';
//获取左侧导航树 //获取左侧导航树
export function getTreeData(params:any){ export function getTreeData(params:any){
return request({ return request({
url: '/basedata/substation/getSubstationNaviTree' , url: '/basedata/substation/getSubstationTree' ,
method: 'get', method: 'get',
params:params params:params
}); });

View File

@ -70,4 +70,12 @@ export function getAlarmLogById(params:any){
params:params params:params
}); });
} }
//告警准确率
export function getConfirmationRate(params:any){
return request({
url: '/patroltask/task-alarm/getConfirmationRate' ,
method: 'get',
params:params
});
}

View File

@ -2,7 +2,7 @@ import request from '@/utils/request';
//获取表格数据 //获取表格数据
export function getdata(params: any) { export function getdata(params: any) {
return request({ return request({
url: '/patroltasks/task/getTaskPage', url: '/patroltasks/task/getTaskList',
method: 'get', method: 'get',
params: params params: params
}); });
@ -34,7 +34,7 @@ export function changeSwitch(params: any) {
//删除巡视任务 //删除巡视任务
export function delTask(params: any) { export function delTask(params: any) {
return request({ return request({
url: '/patroltasks/task/deleteTask', url: '/patroltasks/task/deleteTaskById',
method: 'post', method: 'post',
params: params params: params
}); });
@ -70,7 +70,7 @@ export function getSubstationNaviTree(params: any) {
//获取主设备类型 //获取主设备类型
export function getmaintype() { export function getmaintype() {
return request({ return request({
url: '/basedata/substation-maindevice/getDeviceTypeList', url: '/basedata/substation-maindevice/getDeviceType',
method: 'get', method: 'get',
}); });
} }
@ -102,7 +102,7 @@ export function checkTask(params:any) {
//巡视任务上报 //巡视任务上报
export function PatrolTask(params:any) { export function PatrolTask(params:any) {
return request({ return request({
url: '/patroltasks/task/reportTask', url: '/patroltasks/task/reportTaskById',
method: 'post', method: 'post',
params:params params:params
}); });

View File

@ -3,7 +3,7 @@ import request from '@/utils/request';
//获取table表格 //获取table表格
export function getdata(params:any){ export function getdata(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/getPatrolDevicePage' , url: '/basedata/substation-patroldevice/getPatrolDeviceList' ,
method: 'get', method: 'get',
params:params params:params
}); });
@ -19,7 +19,7 @@ export function addPosition(params:any){
//修改设备 //修改设备
export function editPosition(params:any){ export function editPosition(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/updatePatrolDevice' , url: '/basedata/substation-patroldevice/updatePatrolDeviceById' ,
method: 'post', method: 'post',
data:params data:params
}); });
@ -43,7 +43,7 @@ export function setDailyMonitorStatus(params:any){
//删除 //删除
export function delPosition(params:any){ export function delPosition(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/deletePatrolDevice' , url: '/basedata/substation-patroldevice/deletePatrolDeviceById' ,
method: 'post', method: 'post',
params:params params:params
}); });
@ -142,7 +142,7 @@ export function setEffectiveArea(params:any){
//获取变电站下的区域 //获取变电站下的区域
export function getArea(params: any) { export function getArea(params: any) {
return request({ return request({
url: '/basedata/substation/getAreaByStationCode', url: '/basedata/substation/getSubstationAreaByCode',
method: 'get', method: 'get',
params: params, params: params,
}); });

View File

@ -2,7 +2,7 @@ import request from '@/utils/request';
//获取表格数据 //获取表格数据
export function getdata(params: any) { export function getdata(params: any) {
return request({ return request({
url: '/patroltasks/task-todo/getTaskReportPage', url: '/patroltasks/task-todo/getTaskReportList',
method: 'get', method: 'get',
params: params params: params
}); });
@ -18,7 +18,7 @@ export function DelData(params:any) {
//导出报告 //导出报告
export function exportExcel(queryParams: any) { export function exportExcel(queryParams: any) {
return request({ return request({
url: '/patroltasks/task-todo/exportTaskTodo', url: '/patroltasks/task-todo/exportTaskTodoById',
method: 'get', method: 'get',
params: queryParams, params: queryParams,
responseType: 'arraybuffer' responseType: 'arraybuffer'
@ -36,7 +36,7 @@ export function getword(queryParams: any) {
// 上报巡视报告 // 上报巡视报告
export function uploadTaskTodoById(queryParams: any) { export function uploadTaskTodoById(queryParams: any) {
return request({ return request({
url: '/patroltasks/task-todo/uploadTaskTodo', url: '/patroltasks/task-todo/uploadTaskTodoById',
method: 'get', method: 'get',
params: queryParams, params: queryParams,
}); });

View File

@ -3,7 +3,7 @@ import request from '@/utils/request';
//获取所有角色 //获取所有角色
export function getdata(params:any){ export function getdata(params:any){
return request({ return request({
url: '/basedata/substation/getSubstationTree' , url: '/basedata/substation/getSubstationBayTree' ,
method: 'get', method: 'get',
params:params params:params
}); });

View File

@ -3,7 +3,7 @@ import request from '@/utils/request';
//获取左侧导航树 //获取左侧导航树
export function getCameraByArea(params:any){ export function getCameraByArea(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/getOnlyCamera' , url: '/basedata/substation-patroldevice/getCameraByArea' ,
method: 'get', method: 'get',
params:params params:params
}); });

View File

@ -3,9 +3,9 @@ import request from '@/utils/request';
//获取table表格 //获取table表格
export function getdata(params:any){ export function getdata(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/getPatrolDevicePage' , url: '/basedata/substation-patroldevice/getPatrolDeviceList' ,
method: 'get', method: 'post',
params:params data:params
}); });
} }
@ -21,7 +21,7 @@ export function addPosition(params:any){
//修改设备 //修改设备
export function editPosition(params:any){ export function editPosition(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/updatePatrolDevice' , url: '/basedata/substation-patroldevice/updatePatrolDeviceById' ,
method: 'post', method: 'post',
data:params data:params
}); });
@ -29,7 +29,7 @@ export function addPosition(params:any){
//根据机器人编码获取摄像头 //根据机器人编码获取摄像头
export function getCreamRoot(params:any){ export function getCreamRoot(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/getCameraByRobotCode' , url: '/basedata/substation-patroldevice/getCameraByRobot' ,
method: 'get', method: 'get',
params:params params:params
}); });
@ -45,7 +45,7 @@ export function changeStatus(params:any){
//删除 //删除
export function delPosition(params:any){ export function delPosition(params:any){
return request({ return request({
url: '/basedata/substation-patroldevice/deletePatrolDevice' , url: '/basedata/substation-patroldevice/deletePatrolDeviceById' ,
method: 'post', method: 'post',
params:params params:params
}); });

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 592 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 900 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 385 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 460 B

Some files were not shown because too many files have changed in this diff Show More