diff --git a/klp-ui/src/views/mes/qc/inspectionTensile/index.vue b/klp-ui/src/views/mes/qc/inspectionTensile/index.vue index faac98ddc..7ca14b718 100644 --- a/klp-ui/src/views/mes/qc/inspectionTensile/index.vue +++ b/klp-ui/src/views/mes/qc/inspectionTensile/index.vue @@ -729,7 +729,13 @@ export default { ...this.detailQueryParams, testMainId: this.currentTestId }).then(response => { - this.detailList = response.rows + // 归一化单字母前缀字段名:Jackson将cContent序列化为ccontent + this.detailList = (response.rows || []).map(row => ({ + ...row, + cContent: row.ccontent ?? row.cContent, + pContent: row.pcontent ?? row.pContent, + sContent: row.scontent ?? row.sContent + })) this.detailTotal = response.total this.detailLoading = false }).catch(() => {