12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
-
- <script type="text/javascript">
- function qytzxxview(qytzid){
- var path="/xkzyx/editmain?path=10:id="+$('#id').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 =""
- for(var i=0;i<data.length;i++){
- var qytz = data[i];
- str+="<tr class='tr_bg'>";
- if(qytz.isTrue){
- str+="<td><input type='checkbox' checked name='qytzid' onclick='clickqytz()' value='"+qytz.id+"'/></td>";
- }else{
- str+="<td><input type='checkbox' name='qytzid' onclick='clickqytz()' value='"+qytz.id+"'/></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+"')\"> <i class='glyphicon glyphicon-search'></i> 查看</a>";
- str+="</td>";
- str+="</tr>";
- }
- $('#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>
|