feat(mes): IQC 检验单行 toolId/toolName 改为 tool

- api/mes/qc/iqc/line/index.ts: QcIqcLineVO 删除 toolId、toolName,新增 tool
- views/mes/qc/iqc/IqcLineList.vue: 表格列 prop 由 toolName 改为 tool
pull/871/MERGE
YunaiV 2026-02-24 03:57:59 +08:00
parent f1beac7055
commit e13a3b2fac
2 changed files with 2 additions and 3 deletions

View File

@ -8,8 +8,7 @@ export interface QcIqcLineVO {
indicatorCode: string // 检测指标编码(关联查询)
indicatorName: string // 检测指标名称(关联查询)
indicatorType: string // 检测指标类型(关联查询)
toolId: number // 检测工具 ID
toolName: string // 检测工具名称(关联查询)
tool: string // 检测工具
checkMethod: string // 检测方法
standardValue: number // 标准值
unitMeasureId: number // 计量单位 ID

View File

@ -10,7 +10,7 @@
<dict-tag :type="DICT_TYPE.MES_INDICATOR_TYPE" :value="scope.row.indicatorType" />
</template>
</el-table-column>
<el-table-column label="检测工具" align="center" prop="toolName" width="120" />
<el-table-column label="检测工具" align="center" prop="tool" width="120" />
<el-table-column label="检测方法" align="center" prop="checkMethod" min-width="180" />
<el-table-column label="标准值" align="center" prop="standardValue" width="100" />
<el-table-column label="单位" align="center" prop="unitMeasureName" width="80" />