master.php
2.01 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
<div class="panel panel-default">
<div class="panel-body">
<form class="form-inline" method="get" >
<div>
<div class="form-group">
<label class="control-label">主播名称:</label>
<input class="form-control" name="name" value="<?php echo $condition['name']?>">
</div>
<button type="submit" class="btn btn-primary mr5">查询</button>
</div>
</form>
</div>
</div>
<div class="form-group">
<label>
<a href="/live/addmaster" class="btn btn-primary">+ 添加主播</a>
</label>
</div>
<div class="row">
<div class="col-md-12">
<div class="table-responsive">
<table class="table table-dark mb30">
<thead>
<tr>
<th>ID</th>
<th>主播头像</th>
<th>主播名称</th>
<th>主播标签</th>
<th>直播次数</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<?php foreach($list as $v):?>
<tr>
<td><?php echo $v->master_id;?></td>
<td><img src="<?php echo $v->pic;?>" style="max-width: 100px"></td>
<td><?php echo $v->name;?></td>
<td><?php echo $v->meta;?></td>
<td><?php echo $v->live_nums;?></td>
<td>
<a class="btn btn-primary" href="/live/editmaster?id=<?php echo $v->master_id;?>">编辑</a>
<a class="btn btn-danger" href="/live/delmaster?id=<?php echo $v->master_id;?>">删除</a>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
<!-- table-responsive -->
</div>
<!-- col-md-12 -->
</div>
<script type="text/javascript">
</script>