You've already forked lubo_comment_query
样式,排序,翻页保留查询条件,继续抽象
This commit is contained in:
@ -25,19 +25,19 @@
|
||||
<tbody>
|
||||
@foreach($programs as $program)
|
||||
<tr>
|
||||
<td class="border align-top">
|
||||
<td class="border align-top w-1/2 lg:w-1/4">
|
||||
<a class="text-blue-600 lg:text-current underline lg:no-underline" href="/programs/{{ $program->id }}/video">
|
||||
<span title="节目">{{$program->name}}</span>
|
||||
<span title="难度">{{$program->difficulty}}</span>
|
||||
<span title="要求">{{$program->desc}}</span>
|
||||
</a>
|
||||
</td>
|
||||
<td class="border align-top">
|
||||
<td class="border align-top w-1/2 lg:w-1/4">
|
||||
@foreach($program->appends as $append)
|
||||
<x-append :append="$append"></x-append>
|
||||
@endforeach
|
||||
</td>
|
||||
<td class="border align-top hidden lg:table-cell">
|
||||
<td class="border align-top hidden lg:table-cell lg:w-1/4">
|
||||
@foreach($program->video_pivots as $video_pivot)
|
||||
<x-links.video_link :bvid="$video_pivot->video_bvid" :part="$video_pivot->start_part" :time="$video_pivot->start_time">
|
||||
<div>{{$video_pivot->created_at}} P{{$video_pivot->start_part}}#{{$video_pivot->start_time}}</div>
|
||||
@ -49,7 +49,7 @@
|
||||
</x-links.video_link>
|
||||
@endforeach
|
||||
</td>
|
||||
<td class="border align-top hidden lg:table-cell">
|
||||
<td class="border align-top hidden lg:table-cell lg:w-1/4">
|
||||
@foreach($program->video_pivots as $video_pivot)
|
||||
<x-links.video_link :bvid="$video_pivot->video_bvid" :part="$video_pivot->stop_part" :time="$video_pivot->stop_time">
|
||||
<div>P{{$video_pivot->stop_part}}#{{$video_pivot->stop_time}}</div>
|
||||
|
Reference in New Issue
Block a user