hospital.html
1.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
<include file="public@header"/>
</head>
<body>
<div class="wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="">标签管理</a></li>
<li><a href="{:url('hospitalAdd',['id'=>$platform_id])}">添加医院</a></li>
</ul>
<form method="post" class="js-ajax-form margin-top-20">
<div class="table-actions">
<!--<button type="submit" class="btn btn-primary btn-sm js-ajax-submit">{:lang('SORT')}</button>-->
</div>
<table class="table table-hover table-bordered table-list">
<thead>
<tr>
<th width="50">ID</th>
<th>标签名称</th>
<th>状态</th>
<th width="160">操作</th>
</tr>
</thead>
<tbody>
<foreach name="hospital" item="vo">
<tr>
<td>{$vo.id}</td>
<td>{$vo.name}</td>
<td><a href="{:url('hospital',['id'=>$vo.id])}">查看医院</a></td>
<td><a class="js-ajax-delete" href="{:url('hosptialDel',['id'=>$vo.id])}">删除</a></td>
</tr>
</foreach>
</tbody>
<tfoot>
<tr>
<th width="50">ID</th>
<th>标签名称</th>
<th>状态</th>
<th width="160">操作</th>
</tr>
</tfoot>
</table>
<div class="table-actions">
<!--<button type="submit" class="btn btn-primary btn-sm js-ajax-submit">{:lang('SORT')}</button>-->
</div>
</form>
<ul class="pagination">{$page|default=''}</ul>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>