Commit 653773411459b74b77d7d9b06030f59dd6ebd55f

Authored by zhangzzzz
1 parent 0c6d0b34

优化报价参数弹窗展示;

src/components/Common/CommonBillEvent.js
... ... @@ -6884,7 +6884,7 @@ export default (ChildComponent) => {
6884 6884 /* 要把数据以表格的形式显示出来 */
6885 6885 const sParamJsonObj = JSON.parse(paramType);
6886 6886 for (const key of Object.keys(sParamJsonObj)) {
6887   - if (key.includes('sParam') && !key.includes('DropDown') && !key.includes('Default')) {
  6887 + if (key.includes('sParam') && !key.includes('DropDown') && !key.includes('Default') && !key.includes('FieldName')) {
6888 6888 const obj = {};
6889 6889 obj.sId = commonUtils.createSid();
6890 6890 obj.sParamKey = key;
... ...