You've already forked lubo_comment_query
复制常驻时,勾选批量复制
This commit is contained in:
24
resources/views/components/appends/item.blade.php
Normal file
24
resources/views/components/appends/item.blade.php
Normal file
@ -0,0 +1,24 @@
|
||||
<tr>
|
||||
<td>
|
||||
@if($enableEdit)
|
||||
<a href="{{route("program.construct.append.edit", ["append"=>$append->id])}}">编辑</a>
|
||||
@endif
|
||||
<x-links.user_link :name="$append->from" :plt-id="$append->platform_id" :mid="$append->from_mid"></x-links.user_link>
|
||||
</td>
|
||||
<td>
|
||||
@if($append->is_original)
|
||||
点播
|
||||
@else
|
||||
追加
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if($append->is_original)
|
||||
点播
|
||||
@else
|
||||
{{$append->name}}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{$append->price}}</td>
|
||||
<td>{{$append->append}}</td>
|
||||
</tr>
|
16
resources/views/components/appends/list.blade.php
Normal file
16
resources/views/components/appends/list.blade.php
Normal file
@ -0,0 +1,16 @@
|
||||
<table class="table-auto border-collapse w-full lg:border lg:border-black">
|
||||
<thead>
|
||||
<tr class="border border-black sticky bg-white lg:static top-0 left-0 right-0">
|
||||
<td>老板</td>
|
||||
<td>类型</td>
|
||||
<td>要求</td>
|
||||
<td>分值</td>
|
||||
<td>补充说明</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($appends as $append)
|
||||
<x-appends.append_list_item :append="$append" :enable-edit="$enableEdit"></x-appends.append_list_item>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
Reference in New Issue
Block a user