标准设备,比对模式被检设备

This commit is contained in:
sjl
2025-07-09 20:12:40 +08:00
parent d2f0382bd9
commit cc848b1ffb
39 changed files with 2247 additions and 285 deletions

View File

@@ -1,3 +1,4 @@
import { pa } from 'element-plus/es/locale/index.mjs';
import type {Device} from '@/api/device/interface/device'
import http from '@/api'
@@ -30,8 +31,8 @@ export const exportPqDev = (params: Device.ReqPqDevParams) => {
return http.download(`/pqDev/export`, params)
}
// 下载导入文件模板
export const downloadTemplate = () => {
return http.download(`/pqDev/downloadTemplate`)
export const downloadTemplate = (params: { pattern: string }) => {
return http.download(`/pqDev/downloadTemplate`,params)
}
//导入被检设备
@@ -59,6 +60,9 @@ export const importContrastPqDev = (params: Device.ReqPqDevParams) => {
// return http.uploadExcel(`/pqDev/importCNDev`, params)
// }
export const getPqDevById = (params: Device.ReqPqDevParams) => {
return http.get(`/pqDev/getById?id=${params.id}`)
}
//根据设备类型决定电源、icd、模板、通道数、额定电压、额定电流
export const getPqDev = () => {

View File

@@ -1,4 +1,6 @@
import { getPqDevById } from './../device/index';
import type {ReqPage, ResPage} from '@/api/interface'
import type { Monitor } from './monitor';
// 被检设备模块
export namespace Device {
@@ -33,9 +35,6 @@ export namespace Device {
name: string; //设备名称
pattern: string; //设备模式 模拟 数字 比对
devType: string;//设备类型
devChns: number; //设备通道数
devVolt: number; //额定电压V
devCurr: number; //额定电流A
manufacturer?: string | null;//生产厂家
createDate: string; //生产日期
createId: string; //出厂编号
@@ -50,27 +49,46 @@ export namespace Device {
sampleId?: string | null; //样品编号
arrivedDate?: string; //送样日期
cityName?: string | null; //所属地市名称
gDName?: string | null; //所属供电公司名称
gdName?: string | null; //所属供电公司名称
subName?: string | null; //所属电站名称
checkState?: number | null; //检测状态
checkResult?: number | null; //检测结果
reportState?: number | null; //报告状态
reportPath?: string | null; //报告路径
qRCode?: string | null; //设备关键信息二维码
reCheckNum: number; //复检次数
planId?: string;//检测计划Id
timeCheckResult?: number;//守时检测结果(0:不符合1:符合)
factorFlag?: number;//是否支持系数校准(0:不支持,1:支持)
factorCheckResult?: number;//系数校准结果(0:不合格1:合格2/表示没有做系数校准)
preinvestmentPlan: string | null;//预投计划
delegate: string | null; //委托方
inspectChannel?: string[] | string;//被检通道
inspectDate?: string | null;//定检日期
harmSysId?: string | null;//谐波系统设备id
importFlag?: number;//是否为导入设备 0否 1是
state: number; //状态
createBy?: string | null; //创建用户
createTime?: string | null; //创建时间
updateBy?: string | null; //更新用户
updateTime?: string | null; //更新时间
devChns: number; //设备通道数
devVolt: number; //额定电压V
devCurr: number; //额定电流A
icdId: string | null;
power: string | null;//工作电源
preinvestmentPlan: string | null;
delegate: string | null; //委托方
devId?: number;
checkState?: number | null; //检测状态(0:未检1:检测中2:检测完成 3:归档)
checkResult?: number | null; //检测结果(0:不符合1:符合2:未检)
reportState?: number | null; //报告状态(0:未生成1:已生成2:未检)
recheckNum: number; //复检次数
timeCheckResult?: number;//守时检测结果(0:不符合1:符合)
factorCheckResult?: number;//系数校准结果(0:不合格1:合格2:未检)
realtimeResult?: number;//实时数据结论(0:不符合1:符合2:未检)
statisticsResult?: number;//统计数据结论(0:不符合1:符合2:未检)
recordedResult?: number;//录波数据结论(0:不符合1:符合2:未检)
checkBy?: string | null;//检测人
checkTime?: string | null;//检测时间
preDetectTime?: number;//预检测耗时
coefficientTime?: number;//系数校准耗时
formalCheckTime?: number;//正式检测耗时
monitorList: Monitor.ResPqMon[] ;
}

View File

@@ -1,33 +1,35 @@
import type { ReqPage, ResPage } from '@/api/interface'
// 被检设备模块
// 监测点模块
export namespace Monitor {
/**
* 电能质量指标字典数据表格分页查询参数
* 监测点表格分页查询参数
*/
export interface ReqPqMonParams extends ReqPage {
id: string; // 装置序号id 必填
devType?: string; // 设备名称
createTime?: string; //创建时间
name?: string; // 设备名称
}
/**
* 被检设备新增、修改、根据id查询返回的对象
* 监测点新增、修改、根据id查询返回的对象
*/
export interface ResPqMon {
id: string; //监测点ID
code: string; //默认与谐波系统监测点ID相同
devId: string; //所属设备ID
name: string; //所属母线
num: number; //监测点序号
pt: number; //PT变比
ct: number; //CT变比
ptType: string; //接线方式,字典表
busbar: string;//所属母线
name: string; //监测点名称
num: number; //线路号,监测点序号
pt: string; //PT变比
ct: string; //CT变比
connection: string; //接线方式,字典表
statInterval: number; //统计间隔
harmSysId: string; //默认与谐波系统监测点ID相同
}
/**
* 被检设备表格查询分页返回的对象;
* 监测点表格查询分页返回的对象;
*/
export interface ResPqMonPage extends ResPage<ResPqMon> {

View File

@@ -0,0 +1,46 @@
import type {ReqPage, ResPage} from '@/api/interface'
// 标准设备模块
export namespace StandardDevice {
/**
* 标准设备表格分页查询参数
*/
export interface ReqPqStandardDeviceParams extends ReqPage {
id: string; // 装置序号id 必填
name: string; //设备名称
devType?: string; // 设备名称
createTime?: string; //创建时间
}
/**
* 标准设备新增、修改、根据id查询返回的对象
*/
export interface ResPqStandardDevice {
id: string; //装置序号ID
name: string; //设备名称
devType: string;//设备类型
manufacturer?: string | null;//生产厂家
protocol: string;//通讯协议
ip: string; //IP地址
port: number; //端口号
inspectChannel:string[] |string;//可检通道数
encryptionFlag: number; //装置是否为加密版本
series?: string | null; //装置识别码3ds加密
devKey?: string | null; //装置秘钥3ds加密
state: number; //状态
createBy?: string | null; //创建用户
createTime?: string | null; //创建时间
updateBy?: string | null; //更新用户
updateTime?: string | null; //更新时间
}
/**
* 标准设备表格查询分页返回的对象;
*/
export interface ResPqStandardDevicePage extends ResPage<ResPqStandardDevice> {
}
}

View File

@@ -0,0 +1,46 @@
import type {StandardDevice} from '@/api/device/interface/standardDevice'
import http from '@/api'
/**
* @name 标准设备管理模块
*/
//获取标准设备
export const getPqStandardDevList = (params: StandardDevice.ReqPqStandardDeviceParams) => {
return http.post(`/pqStandardDev/list`, params)
}
//根据id查询标准设备
export const getPqStandardDevById = (params: StandardDevice.ReqPqStandardDeviceParams) => {
return http.get(`/pqStandardDev/getById?id=${params.id}`)
}
//添加标准设备
export const addPqStandardDev = (params: StandardDevice.ResPqStandardDevice) => {
return http.post(`/pqStandardDev/add`, params)
}
//编辑标准设备
export const updatePqStandardDev = (params: StandardDevice.ResPqStandardDevice) => {
return http.post(`/pqStandardDev/update`, params)
}
//删除标准设备
export const deletePqStandardDev = (params: string[]) => {
return http.post(`/pqStandardDev/delete`, params)
}
//导出标准设备
export const exportPqStandardDev = (params: StandardDevice.ReqPqStandardDeviceParams) => {
return http.download(`/pqStandardDev/export`, params)
}
// 下载导入文件模板
export const downloadTemplate = () => {
return http.download(`/pqStandardDev/downloadTemplate`)
}
//导入标准设备
export const importPqStandardDev = (params: StandardDevice.ReqPqStandardDeviceParams) => {
return http.uploadExcel(`/pqStandardDev/import`, params)
}