You've already forked lubo_comment_query
样式及详情等
This commit is contained in:
@ -28,6 +28,10 @@
|
||||
@endif
|
||||
<input class="form-input border-0 border-b-2 w-full" type="file" name="start_image">
|
||||
</label>
|
||||
<label class="block my-2">
|
||||
节目开打时间
|
||||
<input class="form-input border-0 border-b-2 w-full" type="datetime-local" step="1" name="created_at" value="{{$program_video->created_at}}">
|
||||
</label>
|
||||
<label class="block my-2">
|
||||
结束P数
|
||||
<input class="form-input border-0 border-b-2 w-full" type="number" name="stop_part" value="{{$program_video->stop_part}}">
|
||||
|
@ -21,13 +21,17 @@
|
||||
@foreach($videos as $video_pivot)
|
||||
<tr>
|
||||
<td>
|
||||
<a class="text-purple-600 underline" target="_blank"
|
||||
<a class="underline" target="_blank"
|
||||
href="https://www.bilibili.com/video/{{$video_pivot->video_bvid}}?p={{$video_pivot->start_part}}&t={{$video_pivot->start_sec}}"
|
||||
title="P{{$video_pivot->start_part}}#{{$video_pivot->start_time}}"
|
||||
>{{$video_pivot->video_bvid}}</a>
|
||||
</td>
|
||||
<td>P{{$video_pivot->start_part}} {{$video_pivot->start_time}}</td>
|
||||
<td>{{$video_pivot->created_at}}</td>
|
||||
<td>
|
||||
<a class="underline block" target="_blank"
|
||||
href="https://www.bilibili.com/video/{{$video_pivot->video_bvid}}?p={{$video_pivot->start_part}}&t={{$video_pivot->start_sec}}"
|
||||
title="P{{$video_pivot->start_part}}#{{$video_pivot->start_time}}"
|
||||
>P{{$video_pivot->start_part}}#{{$video_pivot->start_time}}</a>
|
||||
@if($video_pivot->start_image)
|
||||
<img width="300" src="{{$video_pivot->start_image}}" alt="开始时的画面">
|
||||
@else
|
||||
@ -35,6 +39,10 @@
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<a class="underline" target="_blank"
|
||||
href="https://www.bilibili.com/video/{{$video_pivot->video_bvid}}?p={{$video_pivot->stop_part}}&t={{$video_pivot->stop_sec}}"
|
||||
title="P{{$video_pivot->stop_part}}#{{$video_pivot->stop_time}}"
|
||||
>P{{$video_pivot->stop_part}}#{{$video_pivot->stop_time}}</a>
|
||||
@if($video_pivot->stop_image)
|
||||
<img width="300" src="{{$video_pivot->stop_image}}" alt="结束时的画面">
|
||||
@else
|
||||
|
Reference in New Issue
Block a user