主界面,系数校准界面调整
This commit is contained in:
6
frontend/src/api/home/channelsTest/index.ts
Normal file
6
frontend/src/api/home/channelsTest/index.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import http from "@/api";
|
||||
import {ChannelsTest} from "@/api/home/interface/channelsTest";
|
||||
|
||||
export const getBigTestItem = () => {
|
||||
return http.get('');
|
||||
}
|
||||
22
frontend/src/api/home/interface/channelsTest.ts
Normal file
22
frontend/src/api/home/interface/channelsTest.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
// 系数校准模块
|
||||
export namespace ChannelsTest {
|
||||
|
||||
// 系数校准列表
|
||||
export interface CoefficientVO {
|
||||
monitorNum: string;//监测点序号
|
||||
desc: string;//描述
|
||||
aVuData:string;//电压通道A数据
|
||||
aVuXi:string;//电压通道A系数
|
||||
bVuData:string;//电压通道B数据
|
||||
bVuXi:number;//电压通道B系数
|
||||
cVuData:number;//电压通道C数据
|
||||
cVuXi?:string;//电压通道C系数
|
||||
aIeData?:string;//电流通道A数据
|
||||
aIeXi?:string;//电流通道A系数
|
||||
bIeData?:string;//电流通道B数据
|
||||
bIeXi?:string;//电流通道B系数
|
||||
cIeData?:string;//电流通道C数据
|
||||
cIeXi?:string;//电流通道C系数
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user