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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
/**
* 年级管理
* $Id: organization_edit_input.inc,v 1.1 2015/10/08 11:18:53 wanggb Exp $
* @author wanggb
* @access public
* @package manager.templates
**/
global $id;
global $organization_mst;
?>
<b>机构审阅</b><br />
<br />
<form name="organization_edit_input" action="organization_edit_result.php" method="post">
<input type="hidden" name="id" value="<?=$id ?>" />
<input type="hidden" name="action_type" value="<?=$action_type ?>" />
<table>
<tr>
<td>机构编号</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->organization_no) ?></td>
</tr>
<tr>
<td>机构名称</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->title) ?></td>
</tr>
<tr>
<td>法人姓名</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->legal_person) ?></td>
</tr>
<tr>
<td>身份证号</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->id_card) ?></td>
</tr>
<tr>
<td>联系方式</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->contact) ?></td>
</tr>
<tr>
<td>身份证正面</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->legal_person_imgage1) ?></td>
</tr>
<tr>
<td>身份证背面</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->legal_person_imgage2) ?></td>
</tr>
<tr>
<td>营业执照</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->licensen_imgage) ?></td>
</tr>
<tr>
<td>其他类型图片</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->other_imgage) ?></td>
</tr>
<tr>
<td>审核状态</td>
</tr>
<tr>
<td class="begin_blank"><?=htmlspecialchars($organization_mst->other_imgage) ?></td>
</tr>
</table>
<br />
<input type="button" value="完成" class="button_width_normal" onClick="doCheck();" />
</form>