From 741badb834ac2eb172a55fd63ad09ff67a043a87 Mon Sep 17 00:00:00 2001 From: danshihao Date: Mon, 14 Oct 2024 16:25:45 +0800 Subject: [PATCH] =?UTF-8?q?[update=20=E8=A7=A3=E8=AF=BB=E6=B5=81=E7=A8=8B]?= =?UTF-8?q?=20=E5=A4=87=E6=B3=A8=E5=AD=97=E6=AE=B5=E5=8D=95=E7=8B=AC?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/InterpretationClauseTable.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue index 76a2f73..aacb2da 100644 --- a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue +++ b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue @@ -398,7 +398,10 @@ export default { dealColumns (columns) { const tempColumns = [] columns.forEach(item => { - const key = this.toCamelCase(item.dbFieldName) + let key = this.toCamelCase(item.dbFieldName) + if (key === 'remarkss') { + key = 'remarks' + } // 如果是默认的基础列,就不需要动态获取 if (this.baseColumns.find(col => col.dataIndex === key)) { return