瀏覽代碼

git-svn-id: https://192.168.57.71/svn/jsgkj@1563 931142cf-59ea-a443-aa0e-51397b428577

ld_lixh 8 年之前
父節點
當前提交
96356d9947

+ 1 - 2
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/ctl/GksssbCtl.java

@@ -174,17 +174,16 @@ public class GksssbCtl extends BaseCtl {
     @ResponseBody
     public WebJsonResult save (GksssbVo vo) throws ParseException {
     	GksssbModel model = new GksssbModel();
+    	SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
     	if (StringUtils.isEmpty(vo.getId())) {
     		//Ìí¼Ó
     		BeanUtils.copyProperties(vo, model);
-    		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
     		BeanUtils.copyProperties(vo, model);
     		model.setYxq(sdf.parse(vo.getYxq()));
     		gksssbService.add(model);
     	} else {
     		//ÐÞ¸Ä
     		model = gksssbService.findById(vo.getId());
-    		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
     		BeanUtils.copyProperties(vo, model);
     		model.setYxq(sdf.parse(vo.getYxq()));
     		gksssbService.update(model);

+ 5 - 1
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/ctl/JyrjcxxCtl.java

@@ -177,11 +177,11 @@ public class JyrjcxxCtl extends BaseCtl {
     @ResponseBody
     public WebJsonResult save (JyrjcxxVo vo) throws ParseException {
     	JyrjcxxModel model = new JyrjcxxModel();
+    	SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
     	if (StringUtils.isEmpty(vo.getId())) {
     		//添加
     		BeanUtils.copyProperties(vo, model);
     		model.setRecordCode("0");
-    		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
     		model.setFzrq(sdf.parse(vo.getFzrq()));
     		model.setFzyxq(sdf.parse(vo.getFzyxq()));
     		model.setBafzrq(sdf.parse(vo.getBafzrq()));
@@ -191,6 +191,10 @@ public class JyrjcxxCtl extends BaseCtl {
     		//修改
     		model = jyrjcxxService.findById(vo.getId());
     		BeanUtils.copyProperties(vo, model);
+    		model.setFzrq(sdf.parse(vo.getFzrq()));
+    		model.setFzyxq(sdf.parse(vo.getFzyxq()));
+    		model.setBafzrq(sdf.parse(vo.getBafzrq()));
+    		model.setBayxq(sdf.parse(vo.getBayxq()));
     		jyrjcxxService.update(model);
     	}
     	//设置参数返回值

+ 3 - 3
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/model/WxhwModel.java

@@ -21,7 +21,7 @@ public class WxhwModel extends BaseUUIDModel {
 	private String tbzt;//同步状态
 	private Long tbdyid;//同步对应id
 	private String qylb;//区域类别
-	private Long ssqy;//所属区域
+	private String ssqy;//所属区域
 	private String sftb;//是否同步
 	private String orgcode;
 	private String bhun;//编号(UN号)
@@ -93,10 +93,10 @@ public class WxhwModel extends BaseUUIDModel {
 	public void setQylb(String qylb) {
 		this.qylb = qylb;
 	}
-	public Long getSsqy() {
+	public String getSsqy() {
 		return ssqy;
 	}
-	public void setSsqy(Long ssqy) {
+	public void setSsqy(String ssqy) {
 		this.ssqy = ssqy;
 	}
 	public String getSftb() {

+ 3 - 3
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/vo/WxhwVo.java

@@ -16,7 +16,7 @@ public class WxhwVo extends BaseVo {
 	private String tbzt;//同步状态
 	private Long tbdyid;//同步对应id
 	private String qylb;//区域类别
-	private Long ssqy;//所属区域
+	private String ssqy;//所属区域
 	private String sftb;//是否同步
 	private String recordCode;
 	private String byzd1;//备用字段1
@@ -90,10 +90,10 @@ public class WxhwVo extends BaseVo {
 	public void setQylb(String qylb) {
 		this.qylb = qylb;
 	}
-	public Long getSsqy() {
+	public String getSsqy() {
 		return ssqy;
 	}
-	public void setSsqy(Long ssqy) {
+	public void setSsqy(String ssqy) {
 		this.ssqy = ssqy;
 	}
 	public String getSftb() {

+ 2 - 3
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/gksssb/GksssbInfo.jsp

@@ -72,8 +72,7 @@
 				</div>
 				<label class="col-sm-2 control-label" for="yxq">ÓÐЧÆÚ</label>
 				<div class="col-sm-4">
-					<input type="text" id = "yxq" name = "yxq" class="easyui-datetimebox" style = "width:100%;"
-					 data-options="showSeconds:false,formatter:formatterDateNotsfm"/>
+					 <input type = "text" class="form-control"  id="yxq" name="yxq" />
 				</div>
 			</div>
 			<div class="form-group">
@@ -100,7 +99,7 @@
 						</button>
 						 </div>
 					</div>
-					<table class="easyui-datagrid" style="width:97%;height: 200px; padpadding:10px;" id="zstbl"
+					<table class="easyui-datagrid" style="width:97%;height: 100px; padpadding:10px;" id="zstbl"
 					        data-options="fitColumns:true,singleSelect:true,striped:true">   
 					    <thead>   
 					        <tr>   

+ 15 - 1
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/gksssb/GksssbLook.jsp

@@ -56,5 +56,19 @@
 					</table>  
 				</div>
 	  	 </form>
-
+		<div id="fileUp" class="easyui-window" title="检验报告(或证书)" style="width:20%;height: 50%;"    
+       		 data-options="modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
+       		 
+				<table class="easyui-datagrid" style="width:100%;height: 100px;" id="sssbzstbl"
+						data-options="fitColumns:true,singleSelect:true">   
+					    <thead>   
+					        <tr>   
+					            <th data-options="field:'zs',width:60,align:'center'">名称</th>
+					            <th data-options="field:'ope',width:40,align:'center'">打开</th>  
+					            <th data-options="field:'fjid',hidden:true">附件表的id</th>
+					            <th data-options="field:'zsnr',hidden:true">关联blob的Id</th>
+					        </tr>   
+					    </thead>   
+				</table>  
+		</div>
 <script src="<%=request.getContextPath()%>/static/js/gksssb/GksssbLook.js"></script>

+ 2 - 2
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/gksssb/main.jsp

@@ -118,8 +118,8 @@
 			</div>
 		</div>
 		<%@ include file="../../layouts/footer.jsp"%>
-			<div id="gksssbwin" class="easyui-window" title="±à¼­" style="width:40%;height: 60%;"    
-	       		 data-options="iconCls:'icon-edit',modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
+			<div id="gksssbwin" class="easyui-window" title="±à¼­" style="width:80%;height: 600px;"    
+	       		 data-options="modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
 	       		  <div id="tab-tools" style="margin-bottom:10px;">
 				    	<div class="center-block" style="width:160px; margin-left: auto;margin-right: 0px;" >
 						      	<button class="btn btn-custom btn-round btn-sm"

+ 3 - 9
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/glzd/GlzdInfo.jsp

@@ -49,15 +49,11 @@
 				 
 				<label class="col-sm-2 control-label" for="fbrq">发布日期</label>
 				<div class="col-sm-4">
-					<input type="text" id="fbrq" name="fbrq" class="easyui-datetimebox p_txt"
-					 data-options="showSeconds:false,formatter:formatterDateNotsfm"/>
-					 <input type = "hidden" id = "fbsj" />
+					 <input type = "text" class="form-control"  id="fbrq" name="fbrq" />
 				</div>
 				<label class="col-sm-2 control-label" for="xdrq">修订日期</label>
 				<div class="col-sm-4">
-					<input type="text" id="xdrq" name="xdrq" class="easyui-datetimebox p_txt"
-					 data-options="showSeconds:false,formatter:formatterDateNotsfm"/>
-					 <input type = "hidden" id = "xdsj" />
+					 <input type = "text" class="form-control"  id="xdrq" name="xdrq" />
 				</div>
 			</div>
 			<div class="form-group">
@@ -67,9 +63,7 @@
 				</div>
 				<label class="col-sm-2 control-label" for="txsj">填写日期</label>
 				<div class="col-sm-4">
-					<input type="text" id="txsj" name="txsj" class="easyui-datetimebox p_txt"
-					 data-options="showSeconds:false,formatter:formatterDateNotsfm"/>
-					 <input type = "hidden" id = "tbsj" />
+					<input type = "text" class="form-control"  id="txsj" name="txsj" />
 				</div>
 			</div>
 			<div class="form-group">

+ 6 - 4
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/glzd/main.jsp

@@ -101,11 +101,13 @@
 					</td>
 					<td class="tdname">錦땐珂쇌  폅</td>
 					<td class="tdcontent">
-						<input type="text" id="xdrqk" name="xdrq" class="easyui-datetimebox p_txt" data-options="showSeconds:false,formatter:formatterDateNotsfm"/>
+						<!-- <input type="text" id="xdrqk" name="xdrq" class="easyui-datetimebox p_txt" data-options="showSeconds:false,formatter:formatterDateNotsfm"/> -->
+						<input id="xdrqk" name="xdrq"  class="p_txt" type="text"/>
 					</td>
 					<td class="tdname">錦땐珂쇌  岺 </td>
 					<td class="tdcontent">
-						<input type="text" id="xdrqj" name="xdrq" class="easyui-datetimebox p_txt" data-options="showSeconds:false,formatter:formatterDateNotsfm"/>
+						<input id="xdrqj" name="xdrq" class="p_txt" type="text"/>
+						<!-- <input type="text" id="xdrqj" name="xdrq" class="easyui-datetimebox p_txt" data-options="showSeconds:false,formatter:formatterDateNotsfm"/> -->
 					</td>
 					
 				</tr>
@@ -127,8 +129,8 @@
 		</div>
 	</div>
 	<%@ include file="../../layouts/footer.jsp"%>
-		<div id="jyrGlzdwin" class="easyui-window" title="긍서" style="width:40%;height: 60%;"    
-       		 data-options="iconCls:'icon-edit',modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
+		<div id="jyrGlzdwin" class="easyui-window" title="긍서" style="width:90%;height:600px;"    
+       		 data-options="modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
        		  <div id="tab-tools" style="margin-bottom:10px;">
 			    	<div class="center-block" style="width:160px; margin-left: auto;margin-right: 0px;" >
 					      	<button class="btn btn-custom btn-round btn-sm"

+ 16 - 19
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/jyr/JyrInfo.jsp

@@ -88,19 +88,23 @@
 				</div>
 				<label class="col-sm-1 control-label" for="fzrq">发证日期</label>
 				<div class="col-sm-3">
-					<input id="fzrq" class="easyui-datetimebox" 
+					<input class="form-control" id="fzrq" name="fzrq" type="text"/>
+				
+					<!-- <input id="fzrq" class="easyui-datetimebox" 
 							 data-options="showSeconds:false,formatter:formatterDateNotsfm"
 							 style="width:100%;height: 34px;"
 						type="text"/>
-					<input id = "rq" name = "fzrq" type="hidden">
+					<input id = "rq" name = "fzrq" type="hidden"> -->
+					
 				</div>
 				<label class="col-sm-1 control-label" for="bafzrq">有效期</label>
 				<div class="col-sm-3">
-					<input id="bafzrq" class="easyui-datetimebox" 
+				<input class="form-control" id="bafzrq" name="bafzrq" type="text"/>
+					<!-- <input id="bafzrq" class="easyui-datetimebox" 
 							 data-options="showSeconds:false,formatter:formatterDateNotsfm"
 							 style="width:100%;height: 34px;"
 						type="text"/>
-						<input id = "rq2" name = "bafzrq" type="hidden">
+						<input id = "rq2" name = "bafzrq" type="hidden"> -->
 				</div>
 			</div>
 			<div class="form-group">
@@ -272,10 +276,11 @@
 				</div>
 				<label class="col-sm-1 control-label" for="fzyxq">有效期</label>
 				<div class="col-sm-3">
-					<input id="fzyxq" name="fzyxq" class="easyui-datetimebox" 
+				<input id="fzyxq" name="fzyxq" class="form-control" type="text"/>
+					<!-- <input id="fzyxq" name="fzyxq" class="easyui-datetimebox" 
 							 data-options="showSeconds:false,formatter:formatterDateNotsfm"
 							 style="width:100%;height: 34px;"
-						type="text"/>
+						type="text"/> -->
 				</div>
 			</div>
 			<div class="form-group">
@@ -286,10 +291,11 @@
 				</div>
 				<label class="col-sm-1 control-label" for="bayxq">有效期至</label>
 				<div class="col-sm-3">
-					<input id="bayxq" name="bayxq" class="easyui-datetimebox" 
+					<input id="bayxq" name="bayxq" class="form-control" type="text"/>
+					<!-- <input id="bayxq" name="bayxq" class="easyui-datetimebox" 
 							 data-options="showSeconds:false,formatter:formatterDateNotsfm"
 							 style="width:100%;height: 34px;"
-						type="text"/>
+						type="text"/> -->
 				</div>
 				<label class="col-sm-1 control-label" for="bafzjg">发证机构</label>
 				<div class="col-sm-3">
@@ -324,18 +330,9 @@
 				</div>
 			</div>					
 		</div>
-		<div class="modal fade" id="fileUp" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
-			<div class="modal-dialog" style="width:100%;height:100%;">
-				<div class="modal-content">
-					<div class="modal-header">
-						<button type="button" class="close" onclick="closeFile();" data-dismiss="modal">
-							<span aria-hidden="true">&times;</span><span class="sr-only">Close</span>
-						</button>
-						<h6 class="modal-title" id="myModalLabel"></h6>
-					</div>       		 	
+		<div id="fileUp" class="easyui-window" title="文件上传" style="width:20%;height: 50%;"    
+       		 data-options="modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
 					 <%@ include file="../jyr/JyrZsInfo.jsp"%>    
-       		 	</div>
-       		 </div>
 		</div>
 		
 <script src="<%=base%>/static/js/jyr/JyrInfo.js"></script>	

+ 2 - 3
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/jyr/JyrZsInfo.jsp

@@ -1,6 +1,5 @@
 <%@ page language="java" contentType="text/html;charset=GBK"
 	pageEncoding="GBK"%>
-	<script src="<%=request.getContextPath()%>/static/js/ajaxfileupload.js" type="text/javascript"></script>
 	   	 <form class="form-horizontal" id="jyrUserZsInfoform" method="post"  enctype="multipart/form-data" >
 		    <input type="hidden" id="zsid" name="zsid">
 			<input type="hidden" id="zsnr" name="zsnr">
@@ -16,7 +15,7 @@
 				</div>
 			</div>
 			<div class="form-group">
-				<table class="easyui-datagrid" style="width:970px;height: 200px;" id="zstbl"
+				<table class="easyui-datagrid" style="width:100%;height: 100px;" id="zstbl"
 					        data-options="fitColumns:true,singleSelect:true,striped:true">   
 					    <thead>   
 					        <tr>   
@@ -35,5 +34,5 @@
 			</div>
 	  	 </form>
 			
-
+<script src="<%=request.getContextPath()%>/static/js/ajaxfileupload.js" type="text/javascript"></script>
 <script src="<%=request.getContextPath()%>/static/js/jyr/JyrZsInfo.js"></script>

+ 9 - 10
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/jyrUser/JyrUserInfo.jsp

@@ -1,6 +1,5 @@
 <%@ page language="java" contentType="text/html;charset=GBK"
 	pageEncoding="GBK"%>
-	
 	   	 <form class="form-horizontal" id="jyrUserInfoform" method="post"  enctype="multipart/form-data" >
 		    <input type="hidden" id="id" name="id">
 			
@@ -70,22 +69,22 @@
 				
 			</div>
 			<div style="padding-left: 20px;">
-					<table class="easyui-datagrid" style="width:97%;height: 80%; padpadding:10px;" id="zstbl"
-					        data-options="fitColumns:true,singleSelect:true,striped:true">   
+					<table class="easyui-datagrid" style="width:97%;height: 200px; padpadding:10px;" id="zstbl"
+					        data-options="fitColumns:true,singleSelect:true,striped:true"> 
 					    <thead>   
 					        <tr>   
-					        	<th data-options="field:'zsid',width:20,align:'center',hidden:true">证书的id</th>
-					            <th data-options="field:'zsmc',width:20,align:'center'">证书名称</th>   
+					        	<th data-options="field:'zsmc',width:20,align:'center'">证书名称</th>   
 					            <th data-options="field:'zszl',width:10,align:'center'">证书种类</th>   
 					            <th data-options="field:'zsbh',width:10,align:'center'">证书编号</th>   
 					            <th data-options="field:'yxq',width:10,align:'center'">有效期</th>
 					            <th data-options="field:'zs',width:20,align:'center'">证书</th>
-					            <th data-options="field:'fjid',width:20,align:'center',hidden:true">附件表的id</th>
-					            <th data-options="field:'zsnr',width:20,align:'center'">关联blob的Id</th>
+					            <th data-options="field:'manage',width:30,align:'center'">操作</th>
+					        	<th data-options="field:'zsid',width:20,align:'center',hidden:true">证书的id</th>
+					        	<th data-options="field:'fjid',width:20,align:'center',hidden:true">附件表的id</th>
+					            <th data-options="field:'zsnr',width:20,align:'center',hidden:true">关联blob的Id</th>
 					            <th data-options="field:'filename',width:20,align:'center',hidden:true">保存文件名</th>
 					            <th data-options="field:'wjdx',width:20,align:'center',hidden:true">保存文件的大小</th>
 					            <th data-options="field:'wjhzm',width:20,align:'center',hidden:true">保存文件的后缀名</th>
-					            <th data-options="field:'manage',width:30,align:'center'">操作</th>
 					        </tr>   
 					    </thead>   
 					</table>  
@@ -100,8 +99,8 @@
 	  	 </form>
 				
 				
-			<div id="jyrUserZsinfo" class="easyui-window" title="人员证书信息新增" style="width:30%;height: 40%;"    
-       		 data-options="iconCls:'icon-edit',modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
+			<div id="jyrUserZsinfo" class="easyui-window" title="人员证书信息新增" style="width:30%;height: 60%;"    
+       		 data-options="modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
        		  	<%@ include file="../jyrUser/JyrUserZsInfo.jsp" %>
        		</div>
 

+ 1 - 1
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/jyrUser/JyrUserZsInfo.jsp

@@ -1,7 +1,7 @@
 <%@ page language="java" contentType="text/html;charset=GBK"
 	pageEncoding="GBK"%>
 	<script src="<%=request.getContextPath()%>/static/js/ajaxfileupload.js" type="text/javascript"></script>
-	   	 <form class="form-horizontal" id="jyrUserZsInfoform" method="post"  enctype="multipart/form-data" action="<%=request.getContextPath()%>/jyrUser/saveBlob" >
+	   	 <form class="form-horizontal" id="jyrUserZsInfoform" method="post"  enctype="multipart/form-data" style="height: 100%;">
 		    <input type="hidden" id="zsid" name="zsid">
 			<input type="hidden" id="zsnr" name="zsnr">
 			<input type="hidden" id="fjbid" name="fjbid">

+ 19 - 11
gkaqv2/trunk/modules/web/src/main/webapp/WEB-INF/view/dwxx/jyrUser/main.jsp

@@ -12,7 +12,6 @@
 <script src="<%=base%>/static/js/jyrUser/index.js"></script>
 	<style type="text/css">
 		.tdname{font-weight: bolder;}
-		
 	</style>
 </head>
 
@@ -125,10 +124,10 @@
 		</div>
 	</div>
 	<%@ include file="../../layouts/footer.jsp"%>
-		<div id="jyrUserwin" class="easyui-window" title="编辑" style="width:40%;height: 60%;"    
-       		 data-options="iconCls:'icon-edit',modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
-       		  <div id="tab-tools" style="margin-bottom:10px;">
-			    	<div class="center-block" style="width:160px; margin-left: auto;margin-right: 0px;" >
+	<div id="jyrUserwin" class="easyui-window" title="人员证书信息" style="width:90%;height:600px;"    
+       		 data-options="modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
+       		  		<div id="tab-tools" style="margin-bottom:10px;">
+			    		<div class="center-block" style="width:160px; margin-left: auto;margin-right: 0px;" >
 					      	<button class="btn btn-custom btn-round btn-sm"
 								onclick="eidit()">
 								<i class="glyphicon glyphicon-ok"></i> 保存
@@ -137,13 +136,22 @@
 								onclick="closeWin()">
 								<i class="glyphicon glyphicon-remove"></i> 关闭
 							</button>
-					 </div>
-			</div>
-			<%@ include file="../jyrUser/JyrUserInfo.jsp" %>
+					 	</div>
+					</div>
+					<%@ include file="../jyrUser/JyrUserInfo.jsp" %>
 		</div>
-		<div id="jyrUserTjwin" class="easyui-window" title="统计查询" style="width:100%;height: 100%;"    
-       		 data-options="iconCls:'icon-edit',modal:true,collapsible:false,minimizable:false,maximizable:false,resizable:false,closed:true">
-       		 <%@ include file="../jyrUser/JyrUserTjInfo.jsp" %>
+		<div class="modal fade" id="jyrUserTjwin" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+			<div class="modal-dialog" style="width:100%;height:100%;">
+				<div class="modal-content">
+					<div class="modal-header">
+						<button type="button" class="close" data-dismiss="modal">
+							<span aria-hidden="true">&times;</span><span class="sr-only">Close</span>
+						</button>
+						<h6 class="modal-title" id="myModalLabel"></h6>
+					</div>
+       		 		<%@ include file="../jyrUser/JyrUserTjInfo.jsp" %>
+       		 	</div>
+       		</div>
         </div>
 	</div>
 </body>

+ 15 - 15
gkaqv2/trunk/modules/web/src/main/webapp/static/js/gksssb/GksssbLook.js

@@ -120,22 +120,13 @@ function getCkJyrInfo (val) {
 }
 function getfile (id) {
 	$("#fileUp").window("open");
-	$("#sssbzstbl").datagrid('insertRow',{
-		index:0,
-		row:{
-			zs:"1",
-			ope:"2",
-			fjid:"3",
-			zsnr:"4"
-		}
-	});
-/*	gkSsSbZsInint(id);*/
+	gkSsSbZsInint(id);
 } 
 /**
  * 附件列表初始化
  */
 function gkSsSbZsInint (ssid) {
-//	$('#zstbl').datagrid("loadData",{ total: 0, rows: [] });
+	$('#sssbzstbl').datagrid("loadData",{ total: 0, rows: [] });
 	$.ajax({
 		type:"POST",
 		url: basePath+"/gksssb/gksssbZsInit",
@@ -148,15 +139,24 @@ function gkSsSbZsInint (ssid) {
 		      				  ope:ope,
 		      				  fjid:data[i].id,
 		      				  zsnr:data[i].wjnr};
-					alert(1);
-					console.log(gridData);
-					
+					$("#sssbzstbl").datagrid('insertRow',{
+						row:gridData
+					});
 				}
 			}
 		}
 	});
 }
-
+/**
+ * 文件下载
+ */
+function fileDow () {
+	var row = $('#sssbzstbl').datagrid('getSelected');//当前row
+	if (row != null && row != "") {
+		location.href= basePath+"/fileUtil/fileDow?id="+row.zsnr+"&fjid="+row.fjid;
+	}
+	
+}
 formatterDate = function (date) {
 	var day = date.getDate() > 9 ? date.getDate() : "0" + date.getDate();
 	var month = (date.getMonth() + 1) > 9 ? (date.getMonth() + 1) : "0"

+ 0 - 5
gkaqv2/trunk/modules/web/src/main/webapp/static/js/gksssb/index.js

@@ -19,11 +19,6 @@ function initGrid() {
     	ajax_url : basePath + '/gksssb/list',
     	ajax_type : "POST", //提交方式
 		columnData: [{
-			key : 'id',
-			width: '100px',
-            align:'center',
-			text:'id'
-		},{
 			key : 'ssmc',
 			width: '100px',
             align:'center',