From c1eab8db5e76e824aa4619286e3feba48b034466 Mon Sep 17 00:00:00 2001 From: linxiaoping <12345678> Date: Sun, 17 Jun 2018 12:14:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E8=B4=A6=E6=88=B7=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DistributorApproval/LDistributorAccountInfo.jsp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WebContent/Tenwa/Lease/DistributorManage/DistributorApproval/LDistributorAccountInfo.jsp b/WebContent/Tenwa/Lease/DistributorManage/DistributorApproval/LDistributorAccountInfo.jsp index ce8f9a103..a6b6e0a09 100644 --- a/WebContent/Tenwa/Lease/DistributorManage/DistributorApproval/LDistributorAccountInfo.jsp +++ b/WebContent/Tenwa/Lease/DistributorManage/DistributorApproval/LDistributorAccountInfo.jsp @@ -46,7 +46,7 @@ //省市 function selectRegionCode(){ var area_code = getItemValue(0,getRow(),"district"); - AsDialog.PopView("/Common/ToolsA/AreaVFrame.jsp","dialogWidth=850px;dialogHeight=450px;center:yes;status:no;statusbar:no",function(sAreaCodeInfo){ + AsDialog.PopView("/Common/ToolsA/AreaVFrame.jsp","AreaCode="+area_code,"dialogWidth=850px;dialogHeight=450px;center:yes;status:no;statusbar:no",function(sAreaCodeInfo){ //增加清空功能的判断 if( sAreaCodeInfo == '_CANCEL_'){ return; @@ -54,14 +54,14 @@ if(sAreaCodeInfo == "NO" || sAreaCodeInfo == '_CLEAR_'){ setItemValue(0,getRow(),"district",""); //setItemValue(0,getRow(),"DISTRIBUTOR_ADDRESSNAME",""); - }else{ + } else{ if(typeof(sAreaCodeInfo) != "undefined" && sAreaCodeInfo != ""){ sAreaCodeInfo = sAreaCodeInfo.split('@'); sAreaCodeValue = sAreaCodeInfo[0];//-- 行政区划代码 sAreaCodeName = sAreaCodeInfo[1];//--行政区划名称 //setItemValue(0,getRow(),"DISTRIBUTOR_ADDRESS",sAreaCodeValue); setItemValue(0,getRow(),"district",sAreaCodeName); - } + } } },'请选择省市'); }