From ec5845c78943cf9848a803507e6e330edf2ba49f Mon Sep 17 00:00:00 2001 From: xyz <747050115@qq.com> Date: Thu, 6 Mar 2025 14:19:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=80=E6=9D=A5=E6=A0=B8=E9=94=80=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6-=E5=B8=81?= =?UTF-8?q?=E7=A7=8D=E5=A4=9A=E4=B8=AA=E9=80=97=E5=8F=B7=E5=88=86=E9=9A=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gl/verify/verify/vrify/events/handleQueryClick.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gl/verify/verify/vrify/events/handleQueryClick.js b/src/gl/verify/verify/vrify/events/handleQueryClick.js index b404a77..ddec34c 100644 --- a/src/gl/verify/verify/vrify/events/handleQueryClick.js +++ b/src/gl/verify/verify/vrify/events/handleQueryClick.js @@ -37,7 +37,7 @@ export default function handleQueryClick(state,data,isrefreah){ for(let k in childData){ if(k=='ass'||k=='resourceAss'||k=='account_currency'||k=='cashtype'||k=='pk_org'||k=='isShowUnit' ||k=='isControl'||k=='endflag'||k=='isCrossAccountVerify'||k=='isControlItems'){ - }else if(k=='pk_units'||k=='pk_currency'){ + }else if(k=='pk_units'){ if(childData[k].length>0){ if(childData[k][0].value==""){ childData[k]=null; @@ -49,6 +49,8 @@ export default function handleQueryClick(state,data,isrefreah){ }else{ childData[k]=null; } + }else if(k=='pk_currency'){ //币种 + childData[k]=childData[k].length>0?childData[k].map(item=>item.value).join(','):null }else{ childData[k]=childData[k].value?childData[k].value:null; }