cookBook.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
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('user/adminIndex/index')}">{:lang('USER_INDEXADMIN_INDEX')}</a></li>
<li class="active"><a>生成菜谱</a></li>
</ul>
<form method="post" class="js-ajax-form">
<div class="table-actions">
<!--
<notempty name="category">
<button class="btn btn-primary btn-sm js-articles-move" type="button">批量移动</button>
</notempty>
<button class="btn btn-primary btn-sm js-articles-copy" type="button">批量复制</button>
-->
<a class="btn btn-primary btn-sm daochu" type="submit" href="{:url('adminIndex/excel')}" data-subcheck="true" data-msg="您确定导出吗?">
导出
</a>
</div>
<table class="table table-hover table-bordered table-list">
<thead>
<tr>
<!--<th width="15">-->
<!--<label>-->
<!--<input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">-->
<!--</label>-->
<!--</th>-->
<th>ID</th>
<th>微信名</th>
<th>手机号</th>
<th>餐谱</th>
</tr>
</thead>
<tbody>
<foreach name="list" item="vo">
<tr>
<!--<td>-->
<!--<input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]"-->
<!--value="{$vo.id}" title="ID:{$vo.id}">-->
<!--</td>-->
<td>{$vo.id}</td>
<td>{$vo.user_nickname}</td>
<td>{$vo.mobile}</td>
<td>{$vo.cook}</td>
</tr>
</foreach>
<tr>
<!--<th width="15">-->
<!--<label>-->
<!--<input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">-->
<!--</label>-->
<!--</th>-->
<th>ID</th>
<th>微信名</th>
<th>手机号</th>
<th>餐谱</th>
</tr>
</tbody>
</table>
<div class="table-actions">
<!--<button type="submit" class="btn btn-primary btn-sm js-ajax-submit">{:lang('SORT')}</button>-->
<a class="btn btn-primary btn-sm daochu" type="submit" href="{:url('adminIndex/excel')}" data-subcheck="true" data-msg="您确定导出吗?">
导出
</a>
</div>
<div class="pagination">{$page}</div>
</form>
</div>
<script src="__STATIC__/js/admin.js">
</script>
</body>
</html>