diff --git a/src/api/mes/qc/indicator/index.ts b/src/api/mes/qc/indicator/index.ts index bad7ca44d..7108304ec 100644 --- a/src/api/mes/qc/indicator/index.ts +++ b/src/api/mes/qc/indicator/index.ts @@ -5,7 +5,7 @@ export interface QcIndicatorVO { id: number // 编号 code: string // 检测项编码 name: string // 检测项名称 - type: string // 检测项类型 + type: number // 检测项类型 tool: string // 检测工具 resultType: number // 结果值类型 resultSpecification: string // 结果值属性 diff --git a/src/api/mes/qc/ipqc/line/index.ts b/src/api/mes/qc/ipqc/line/index.ts index b72487f12..511262a5b 100644 --- a/src/api/mes/qc/ipqc/line/index.ts +++ b/src/api/mes/qc/ipqc/line/index.ts @@ -7,7 +7,7 @@ export interface QcIpqcLineVO { indicatorId: number // 检测指标 ID indicatorCode: string // 检测指标编码(关联查询) indicatorName: string // 检测指标名称(关联查询) - indicatorType: string // 检测指标类型(关联查询) + indicatorType: number // 检测指标类型(关联查询) toolId: number // 检测工具 ID toolName: string // 检测工具名称(关联查询) checkMethod: string // 检测方法 diff --git a/src/api/mes/qc/iqc/line/index.ts b/src/api/mes/qc/iqc/line/index.ts index 4479aad66..c9cec9b89 100644 --- a/src/api/mes/qc/iqc/line/index.ts +++ b/src/api/mes/qc/iqc/line/index.ts @@ -7,7 +7,7 @@ export interface QcIqcLineVO { indicatorId: number // 检测指标 ID indicatorCode: string // 检测指标编码(关联查询) indicatorName: string // 检测指标名称(关联查询) - indicatorType: string // 检测指标类型(关联查询) + indicatorType: number // 检测指标类型(关联查询) tool: string // 检测工具 checkMethod: string // 检测方法 standardValue: number // 标准值 diff --git a/src/api/mes/qc/oqc/line/index.ts b/src/api/mes/qc/oqc/line/index.ts index 419a62948..f1bc2c7e8 100644 --- a/src/api/mes/qc/oqc/line/index.ts +++ b/src/api/mes/qc/oqc/line/index.ts @@ -7,7 +7,7 @@ export interface QcOqcLineVO { indicatorId: number // 检测指标 ID indicatorCode: string // 检测指标编码(关联查询) indicatorName: string // 检测指标名称(关联查询) - indicatorType: string // 检测指标类型(关联查询) + indicatorType: number // 检测指标类型(关联查询) checkMethod: string // 检测方法 standardValue: number // 标准值 unitMeasureId: number // 计量单位 ID diff --git a/src/api/mes/qc/rqc/line/index.ts b/src/api/mes/qc/rqc/line/index.ts index dccf7eb26..476c058bb 100644 --- a/src/api/mes/qc/rqc/line/index.ts +++ b/src/api/mes/qc/rqc/line/index.ts @@ -7,7 +7,7 @@ export interface QcRqcLineVO { indicatorId: number // 检测指标 ID indicatorCode: string // 检测指标编码(关联查询) indicatorName: string // 检测指标名称(关联查询) - indicatorType: string // 检测指标类型(关联查询) + indicatorType: number // 检测指标类型(关联查询) tool: string // 检测工具 checkMethod: string // 检测方法 standardValue: number // 标准值 diff --git a/src/api/mes/qc/template/indicator/index.ts b/src/api/mes/qc/template/indicator/index.ts index faf2e7b2b..91ce5b4be 100644 --- a/src/api/mes/qc/template/indicator/index.ts +++ b/src/api/mes/qc/template/indicator/index.ts @@ -15,7 +15,7 @@ export interface QcTemplateIndicatorVO { // JOIN mes_qc_indicator indicatorCode: string // 检测项编码 indicatorName: string // 检测项名称 - indicatorType: string // 检测项类型(字典 mes_index_type) + indicatorType: number // 检测项类型 indicatorTool: string // 检测工具 // JOIN mes_md_unit_measure unitMeasureName: string // 计量单位名称 diff --git a/src/views/mes/qc/indicator/IndicatorForm.vue b/src/views/mes/qc/indicator/IndicatorForm.vue index bea898b22..c9a9a9431 100644 --- a/src/views/mes/qc/indicator/IndicatorForm.vue +++ b/src/views/mes/qc/indicator/IndicatorForm.vue @@ -21,7 +21,7 @@