From 653773411459b74b77d7d9b06030f59dd6ebd55f Mon Sep 17 00:00:00 2001 From: zhangzhen <525765282@qq.com> Date: Thu, 19 Jun 2025 17:38:33 +0800 Subject: [PATCH] 优化报价参数弹窗展示; --- src/components/Common/CommonBillEvent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Common/CommonBillEvent.js b/src/components/Common/CommonBillEvent.js index 9551ef3..3fc2fd8 100644 --- a/src/components/Common/CommonBillEvent.js +++ b/src/components/Common/CommonBillEvent.js @@ -6884,7 +6884,7 @@ export default (ChildComponent) => { /* 要把数据以表格的形式显示出来 */ const sParamJsonObj = JSON.parse(paramType); for (const key of Object.keys(sParamJsonObj)) { - if (key.includes('sParam') && !key.includes('DropDown') && !key.includes('Default')) { + if (key.includes('sParam') && !key.includes('DropDown') && !key.includes('Default') && !key.includes('FieldName')) { const obj = {}; obj.sId = commonUtils.createSid(); obj.sParamKey = key; -- libgit2 0.22.2