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 改为 toolpull/871/MERGE
parent
f1beac7055
commit
e13a3b2fac
|
|
@ -8,8 +8,7 @@ export interface QcIqcLineVO {
|
||||||
indicatorCode: string // 检测指标编码(关联查询)
|
indicatorCode: string // 检测指标编码(关联查询)
|
||||||
indicatorName: string // 检测指标名称(关联查询)
|
indicatorName: string // 检测指标名称(关联查询)
|
||||||
indicatorType: string // 检测指标类型(关联查询)
|
indicatorType: string // 检测指标类型(关联查询)
|
||||||
toolId: number // 检测工具 ID
|
tool: string // 检测工具
|
||||||
toolName: string // 检测工具名称(关联查询)
|
|
||||||
checkMethod: string // 检测方法
|
checkMethod: string // 检测方法
|
||||||
standardValue: number // 标准值
|
standardValue: number // 标准值
|
||||||
unitMeasureId: number // 计量单位 ID
|
unitMeasureId: number // 计量单位 ID
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
<dict-tag :type="DICT_TYPE.MES_INDICATOR_TYPE" :value="scope.row.indicatorType" />
|
<dict-tag :type="DICT_TYPE.MES_INDICATOR_TYPE" :value="scope.row.indicatorType" />
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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="checkMethod" min-width="180" />
|
||||||
<el-table-column label="标准值" align="center" prop="standardValue" width="100" />
|
<el-table-column label="标准值" align="center" prop="standardValue" width="100" />
|
||||||
<el-table-column label="单位" align="center" prop="unitMeasureName" width="80" />
|
<el-table-column label="单位" align="center" prop="unitMeasureName" width="80" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue