From fd856b0eaa21b825776eefe6023cda9ce69d62d3 Mon Sep 17 00:00:00 2001 From: zhangbb Date: Sun, 19 Aug 2018 18:32:38 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=9D=E5=8D=95=E6=94=BE=E6=AC=BE=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E6=A0=B9=E6=8D=AE=E8=BD=A6=E7=B1=BB=E5=9E=8B=E6=94=B9?= =?UTF-8?q?=E5=8F=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp b/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp index 2e6e5bd13..73503aa0f 100644 --- a/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp +++ b/WebContent/Tenwa/Lease/Flow/Fund/FundPayment/LCFundPaymentTempInfo.jsp @@ -31,8 +31,15 @@ $(function(){ }); function lendingType(){ var lendingType = getItemValue(0, 0, "LENDING_TYPE"); + var carType = getItemValue(0, 0, "CAR_TYPE"); if(lendingType==null||lendingType==""){ - setItemValue(0, 0, "LENDING_TYPE", "FIRST"); + if(carType=="used_car"){ + setItemValue(0, 0, "LENDING_TYPE", "AFTER"); + setItemDisabled(0,0,"LENDING_TYPE",true); + }else{ + setItemValue(0, 0, "LENDING_TYPE", "FIRST"); + } + } }