diff --git a/frontend/src/api/check/interface/index.ts b/frontend/src/api/check/interface/index.ts index bfa364c..c934930 100644 --- a/frontend/src/api/check/interface/index.ts +++ b/frontend/src/api/check/interface/index.ts @@ -45,21 +45,21 @@ export namespace CheckData { * 用于定义 查看(设备)通道检测结果表格展示数据 类型 */ export interface CheckResult { - aStd?: string, - aData?: string, - aError?: string, + stdA?: string, + dataA?: string, + errorA?: string, isDataA?: number, - bStd?: string, - bData?: string, - bError?: string, + stdB?: string, + dataB?: string, + errorB?: string, isDataB?: number, - cStd?: string, - cData?: string, - cError?: string, + stdC?: string, + dataC?: string, + errorC?: string, isDataC?: number, - tStd?: string, - tData?: string, - tError?: string, + stdT?: string, + dataT?: string, + errorT?: string, isDataT?: number, //最大误差值 @@ -74,12 +74,12 @@ export namespace CheckData { */ export interface RawDataItem { time?: string, - harmNum?: number|null, + harmNum?: number | null, dataA?: string, dataB?: string, dataC?: string, dataT?: string, - unit?: string|null + unit?: string | null } export interface Device { diff --git a/frontend/src/views/home/components/dataCheckResultTable.vue b/frontend/src/views/home/components/dataCheckResultTable.vue index 31ef7ac..a434949 100644 --- a/frontend/src/views/home/components/dataCheckResultTable.vue +++ b/frontend/src/views/home/components/dataCheckResultTable.vue @@ -10,14 +10,14 @@