1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?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>