联调 干扰源用户 谐波普测页面
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import createAxios from '@/utils/request'
|
||||
|
||||
//查询普测计划-新建页面
|
||||
export function queryPlan(data:any) {
|
||||
export function queryPlan(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/queryPlan',
|
||||
method: 'post',
|
||||
@@ -9,7 +9,7 @@ export function queryPlan(data:any) {
|
||||
})
|
||||
}
|
||||
//导出普测计划信息
|
||||
export function exportSurveyPlan(data:any) {
|
||||
export function exportSurveyPlan(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/exportSurveyPlan',
|
||||
method: 'post',
|
||||
@@ -18,7 +18,7 @@ export function exportSurveyPlan(data:any) {
|
||||
})
|
||||
}
|
||||
//新增
|
||||
export function getGeneratrixByCondition(data:any) {
|
||||
export function getGeneratrixByCondition(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/pms/generatrixWire/getGeneratrixByCondition',
|
||||
method: 'post',
|
||||
@@ -26,7 +26,7 @@ export function getGeneratrixByCondition(data:any) {
|
||||
})
|
||||
}
|
||||
// 获取变电站名称
|
||||
export function getstatationStatList(data:any) {
|
||||
export function getstatationStatList(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/pms/statationStat/getstatationStatList',
|
||||
method: 'post',
|
||||
@@ -34,7 +34,7 @@ export function getstatationStatList(data:any) {
|
||||
})
|
||||
}
|
||||
// 新增-修改普测计划
|
||||
export function addPlan(data:any) {
|
||||
export function addPlan(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/addPlan',
|
||||
method: 'post',
|
||||
@@ -43,7 +43,7 @@ export function addPlan(data:any) {
|
||||
}
|
||||
|
||||
//查询普测计划-审核页面
|
||||
export function queryPlanAudit(data:any) {
|
||||
export function queryPlanAudit(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/queryPlanAudit',
|
||||
method: 'post',
|
||||
@@ -51,7 +51,7 @@ export function queryPlanAudit(data:any) {
|
||||
})
|
||||
}
|
||||
//查询普测计划-结果页面
|
||||
export function queryPlanResult(data:any) {
|
||||
export function queryPlanResult(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/queryPlanResult',
|
||||
method: 'post',
|
||||
@@ -59,20 +59,21 @@ export function queryPlanResult(data:any) {
|
||||
})
|
||||
}
|
||||
//下载普测结果报告
|
||||
export function surveyResultDownload(data:any) {
|
||||
export function surveyResultDownload(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/surveyResultDownload?planNo=' + data.planNo,
|
||||
method: 'post'
|
||||
url: '/process-boot/rGeneralSurveyPlan/surveyResultDownload',
|
||||
method: 'post',
|
||||
params: data
|
||||
// responseType: 'blob',
|
||||
})
|
||||
}
|
||||
//下载
|
||||
export function downLoadData(data:any) {
|
||||
export function downLoadData(data: any) {
|
||||
return createAxios({
|
||||
url: data
|
||||
})
|
||||
}
|
||||
export function MultipartFile(data:any) {
|
||||
export function MultipartFile(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/surveyResultUpload',
|
||||
method: 'post',
|
||||
@@ -80,7 +81,7 @@ export function MultipartFile(data:any) {
|
||||
data
|
||||
})
|
||||
}
|
||||
export function initDetpStataionTree(data:any) {
|
||||
export function initDetpStataionTree(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/initDetpStataionTree',
|
||||
method: 'post',
|
||||
@@ -88,23 +89,22 @@ export function initDetpStataionTree(data:any) {
|
||||
})
|
||||
}
|
||||
// 普测计划-审核
|
||||
export function checkPlanAudit(data:any) {
|
||||
export function checkPlanAudit(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/checkPlanAudit',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 普测计划-审核
|
||||
export function queryPlanConfig(data:any) {
|
||||
// 占比查询
|
||||
export function queryPlanConfig() {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/queryPlanConfig',
|
||||
method: 'post',
|
||||
data
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
// 增加普测计划参数
|
||||
export function addPlanConfig(data:any) {
|
||||
export function addPlanConfig(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/addPlanConfig',
|
||||
method: 'post',
|
||||
@@ -112,7 +112,7 @@ export function addPlanConfig(data:any) {
|
||||
})
|
||||
}
|
||||
// 电站勾选接口
|
||||
export function querySubStatation(data:any) {
|
||||
export function querySubStatation(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/querySubStatation',
|
||||
method: 'post',
|
||||
@@ -120,7 +120,7 @@ export function querySubStatation(data:any) {
|
||||
})
|
||||
}
|
||||
// 设置普测周期
|
||||
export function addPlanCycle(data:any) {
|
||||
export function addPlanCycle(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/addPlanCycle',
|
||||
method: 'post',
|
||||
@@ -128,7 +128,7 @@ export function addPlanCycle(data:any) {
|
||||
})
|
||||
}
|
||||
// 批量提交审核
|
||||
export function planStatus(data:any) {
|
||||
export function planStatus(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/rGeneralSurveyPlan/planStatus',
|
||||
method: 'post',
|
||||
|
||||
126
src/api/process-boot/interference.ts
Normal file
126
src/api/process-boot/interference.ts
Normal file
@@ -0,0 +1,126 @@
|
||||
import createAxios from '@/utils/request'
|
||||
//获取未建档非线性用户录入及查询数据
|
||||
export function getUndocumentednonlinearData() {
|
||||
return createAxios({
|
||||
url: '/Process-supervision/Undocumentednonlinear/getUndocumentednonlinear',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
//获取入网评估报告审核数据
|
||||
export function getReportreviewData() {
|
||||
return createAxios({
|
||||
url: '/Process-supervision/Reportreview/getReportreview',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
//获取干扰源用户常态化管理数据
|
||||
export function getNormalizedmanagementData() {
|
||||
return createAxios({
|
||||
url: '/Process-supervision/Normalizedmanagement/getNormalizedmanagement',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
//获取实测报告审核数据
|
||||
export function getMeasurementreportData() {
|
||||
return createAxios({
|
||||
url: '/Process-supervision/Measurementreport/getMeasurementreport',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
export function addLoadTypeUser(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/addLoadTypeUser',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function getLoadTypeUserList(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/getLoadTypeUserList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function getPowerClientList(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/pms/powerClient/getPowerClientList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function getPowerGenerationUserList(data: any) {
|
||||
return createAxios({
|
||||
url: '/device-boot/pms/powerGenerationUser/getPowerGenerationUserList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function linkUser(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/linkUser',
|
||||
method: 'post',
|
||||
|
||||
data
|
||||
})
|
||||
}
|
||||
export function uploadLoadTypeUserI(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/uploadLoadTypeUserI',
|
||||
method: 'post',
|
||||
headers: { 'Content-Type': 'multipart/form-data' },
|
||||
data
|
||||
})
|
||||
}
|
||||
export function getLoadTypeUserById(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/getLoadTypeUserById',
|
||||
method: 'get',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
export function exportLoadTypeUserList(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/exportLoadTypeUserList',
|
||||
method: 'post',
|
||||
data,
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
export function exportLoadTypeRelationList(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/exportLoadTypeRelationList',
|
||||
method: 'post',
|
||||
data,
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
export function getLoadTypeRelationList(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/getLoadTypeRelationList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function uploadLoadTypeUserA(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/uploadLoadTypeUserA',
|
||||
method: 'post',
|
||||
headers: { 'Content-Type': 'multipart/form-data' },
|
||||
data
|
||||
})
|
||||
}
|
||||
export function checkLoadTypeUserI(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/checkLoadTypeUserI',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function checkLoadTypeUserA(data: any) {
|
||||
return createAxios({
|
||||
url: '/process-boot/loadTypeUserManage/checkLoadTypeUserA',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user