view.html
3.7 KB
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
92
93
94
95
96
97
98
<admintpl file="header" />
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:U('WillUserApply/index')}">入会申请提交列表</a></li>
<li class="active"><a href="">入会申请提交详情</a></li>
</ul>
<form action="" method="post" class="form-horizontal js-ajax-forms">
<div class="row-fluid">
<div class="span9">
<table class="table table-bordered">
<tr>
<th width="80">用户ID</th>
<td>{$user_id}</td>
<input type="hidden" name="id" value="{$id}"/>
</tr>
<tr>
<th>姓名</th>
<td>{$name}</td>
</tr>
<tr>
<th>所在省市</th>
<td>{$province}{$city}</td>
</tr>
<tr>
<th>出生年份</th>
<td>{$birth}</td>
</tr>
<tr>
<th>性别</th>
<td>
<eq name="sex" value="1">男</eq>
<eq name="sex" value="2">女</eq>
</td>
</tr>
<tr>
<th>高校</th>
<td>{$school}</td>
</tr>
<tr>
<th>专业</th>
<td>{$major}</td>
</tr>
<tr>
<th>手机号码</th>
<td>{$mobile}</td>
</tr>
<tr>
<th>年级</th>
<td>{$classes}</td>
</tr>
<tr>
<th>邮箱</th>
<td>{$email}</td>
</tr>
<tr>
<th>相关专业经验</th>
<td>{$experience}</td>
</tr>
<tr>
<th>个人创意特长与兴趣领域描述</th>
<td>{$skill}</td>
</tr>
<tr>
<th>提交时间</th>
<td>{:date('Y-m-d H:i',$ctime)}</td>
</tr>
</table>
</div>
<div class="span3">
<table class="table table-bordered">
<tr>
<th>状态</th>
</tr>
<tr>
<td>
<php>
$status_yes=$status==2?"checked":"";
$status_no=$status==1?"checked":"";
$status_un=$status==3?"checked":"";
</php>
<label class="radio"><input type="radio" name="status" value="2" {$status_yes}>通过</label>
<label class="radio"><input type="radio" name="status" value="1" {$status_no}>待审核</label>
<label class="radio"><input type="radio" name="status" value="3" {$status_un}>驳回</label>
</td>
</tr>
</table>
</div>
</div>
<div class="form-actions">
<a class="btn" href="{:U('WillProduceApply/index')}">返回</a>
</div>
</form>
</div>
<script src="__PUBLIC__/js/common.js"></script>
</body>
</html>