organization_list.inc 1.55 KB
<?php
/**
 * 管理员管理
 * $Id: account_list.inc,v 1.1 2015/10/08 11:18:50 wanggb Exp $
 * @author netvillage
 * @access public
 * @package manager.templates
 */

global $account_list;

?>
<div class="page_title">审核管理-机构认证</div>

<div class="page_buttons">
		<a class="flatbutton" href="organization_edit_input.php?action_type=new">搜索</a>
</div>


<br />
<div id="result_list" >
<table >
<tr>
<th class="contents_title" >编号</th>
<th class="contents_title" >机构名称</th>
<th class="contents_title" >法人姓名</th>
<th class="contents_title" >身份证号</th>
<th class="contents_title" >联系方式</th>
<th class="contents_title" >上传时间</th>
<th class="contents_title" >状态</th>
<th class="contents_title" >操作</th>

<?
	foreach ($organization_list as $organization_mst) {		
?>
<tr>
	<td align="center"><?=htmlspecialchars($organization_mst->organization_no) ?></td>
	<td align="center"><?=htmlspecialchars($organization_mst->title) ?></td>
	<td align="center"><?=htmlspecialchars($organization_mst->legal_person) ?></td>
	<td align="center"><?=htmlspecialchars($organization_mst->id_card) ?></td>
	<td align="center"><?=htmlspecialchars($organization_mst->contact) ?></td>
	<td align="center"><?=htmlspecialchars($organization_mst->submit_date) ?></td>
	<td align="center"><?=htmlspecialchars(OrganizationStatus::getByName($organization_mst->status)) ?></td>	
	<td align="center">
		<a class="flatbutton" href="organization_edit_input.php?action_type=edit&id=<?=$organization_mst->id ?>">审阅</a>
	</td>
</tr>
<?
}
?>
</table>
</div>