123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
-
- <script type="text/javascript">
- function qytzxxview(qytzid){
- var path="/xkzyx/viewmain?path=10:id="+$('#id').val()+":flag="+$('#flag').val();
- location.href=$.app+'/qytz/view?id='+qytzid+'&path='+path;
- }
-
- function initqytzxx(){
- $.post($.app + "/gkjyr/qytzxx", {
- id : $('#jyrid').val(),
- czid:$('#id').val()
- }, function(data) {
- if (data) {
- var str ="";
- var num=1;
- for(var i=0;i<data.length;i++){
- var qytz = data[i];
- if(qytz.isTrue){
- str+="<td>"+num+"</td>";
- str+="<td>"+qytz.tzrmc+"</td>";
- str+="<td>"+(qytz.je==null?"":qytz.je)+"</td>";
- str+="<td>"+(qytz.jedw==null?"":qytz.jedw)+"</td>";
- str+="<td>"+qytz.ssjyrzw+"</td>";
- str+="<td>"+(qytz.tzzje==null?'':qytz.tzzje)+"</td>";
- str+="<td>"+(qytz.tzje==null?'':qytz.tzje)+"</td>";
- str+="<td>"+qytz.sfwszw+"</td>";
- str+="<td>";
- str+="<a class='btn btn-default btn-xs' href='#' onclick=\"qytzxxview('"+qytz.id+"')\" title='查看'> <i class='glyphicon glyphicon-search'></i> </a>";
- str+="</td>";
- str+="</tr>";
- num++;
- }
- }
- $('#qytzxxdiv').empty();
- $('#qytzxxdiv').append(str);
- } else {
-
- }
- }, "json");
- }
- </script>
-
- <table class="main_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="5%">序号</th>
- <th width="10%">投资人名称</th>
- <th width="10%">投资金额</th>
- <th width="10%">投资金额单位</th>
- <th width="10%">港口经营人</th>
- <th width="10%">投资总金额</th>
- <th width="10%">投资总金额单位</th>
- <th width="10%">是否外商</th>
- <th width="25%">操作</th>
- </tr>
- <tbody id="qytzxxdiv"></tbody>
-
- </table>
|