This commit is contained in:
jhd
2026-07-01 13:29:38 +08:00
7 changed files with 166 additions and 2 deletions

View File

@@ -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(() => {