index.html
2.3 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
<include file="public@header"/>
</head>
<body>
<div class="wrap">
<ul class="nav nav-tabs">
<li class="active"><a>领导列表</a></li>
</ul>
<form class="well form-inline margin-top-20" method="post" action="{:url('AdminPartB/index')}">
姓名:
<input class="form-control" type="text" name="user_login" style="width: 200px;" value="{:input('request.user_login')}"
placeholder="请输入姓名">
手机号:
<input class="form-control" type="text" name="mobile" style="width: 200px;" value="{:input('request.mobile')}"
placeholder="请输入手机号">
<input type="submit" class="btn btn-primary" value="搜索"/>
<a class="btn btn-danger" href="{:url('AdminPartB/index')}">清空</a>
</form>
<form method="post" class="js-ajax-form">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>ID</th>
<th>姓名</th>
<th>职称</th>
<th>头像</th>
<th>手机</th>
<th>公司名称</th>
<th>子公司名称</th>
</tr>
</thead>
<tbody>
<notempty name="list">
<foreach name="list" item="vo">
<tr>
<td>{$vo.id}</td>
<td>
{$vo.user_login}
</td>
<td>{$vo.identity_c}</td>
<td>
<notempty name="vo.avatar">
<img width="25" height="25" src="{$host}{$vo.avatar}"/>
<else/>
<img width="25" height="25" src="/themes/admin_simpleboot3/public/assets/images/headicon.png">
</notempty>
</td>
<td>{$vo.mobile}</td>
<td>{$vo.company_name_head}</td>
<td>{$vo.company_name}</td>
</tr>
</foreach>
</notempty>
</tbody>
</table>
<!--分页-->
<div class="pagination">{$page}</div>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>