view.html
2.9 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
<admintpl file="header" />
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:U('WillMissionApply/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>
</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>{$product}</td>
</tr>
<tr>
<th>作品描述</th>
<td>{$product_description}</td>
</tr>
<tr>
<th>提交时间</th>
<td>{:date('Y-m-d H:i',$ctime)}</td>
</tr>
</table>
</div>
</div>
<div class="form-actions">
<a class="btn" href="{:U('WillMissionApply/index')}">返回</a>
</div>
</form>
</div>
<script src="__PUBLIC__/js/common.js"></script>
</body>
</html>