You've already forked lubo_comment_query
弹幕列表
This commit is contained in:
34
resources/views/danmaku.blade.php
Normal file
34
resources/views/danmaku.blade.php
Normal file
@ -0,0 +1,34 @@
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>录播节目单查询</title>
|
||||
</head>
|
||||
<body>
|
||||
@include("header")
|
||||
<table border>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>视频标题</td>
|
||||
<td>弹幕条数</td>
|
||||
<td>操作</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($video_list as $video)
|
||||
<tr>
|
||||
<td>{{$video->title}}</td>
|
||||
<td>{{$video->danmakus_count}}</td>
|
||||
<td>
|
||||
@if($video->danmakus_count > 0)
|
||||
<a href="/danmakus/{{$video->bvid}}">详情</a>
|
||||
@else
|
||||
无弹幕
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
@include("footer")
|
||||
</body>
|
||||
</html>
|
@ -5,6 +5,6 @@
|
||||
导航:
|
||||
<a href="/">节目单查询</a>
|
||||
<a href="/programs" style="color: gray" title="数据不全,待补充">节目查询</a>
|
||||
<a href="/danmakus" style="color: white" title="待建设">直播弹幕查询</a>
|
||||
<a href="/danmakus" style="color: gray" title="数据不全,待补充">直播弹幕查询</a>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user