From ee17698f2b783196ada593af604ccfe0cc424001 Mon Sep 17 00:00:00 2001 From: zhangzhen <525765282@qq.com> Date: Fri, 8 Aug 2025 09:26:23 +0800 Subject: [PATCH] 处理报错问题; --- src/components/QuickQuote/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/QuickQuote/index.jsx b/src/components/QuickQuote/index.jsx index 75951bb..d8045e1 100644 --- a/src/components/QuickQuote/index.jsx +++ b/src/components/QuickQuote/index.jsx @@ -1872,7 +1872,7 @@ const BoxComponent = props => { return false; } else { if (item.sName === "iPage") { - const rateList = JSON.parse(slaveConfig.gdsconfigformslave.find(x => x.sName === "iRateType")?.showDropDown) || []; + const rateList = commonUtils.convertStrToObj(slaveConfig.gdsconfigformslave.find(x => x.sName === "iRateType")?.showDropDown, []); item.showName = rateList[Number(selectedNode.iRateType)] || "倍率"; } } -- libgit2 0.22.2