改进 筛选
This commit is contained in:
parent
95da387068
commit
3a0b6d27bc
@ -26,7 +26,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
@foreach ($transactions as $t)
|
@foreach ($transactions as $t)
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<span class="module_name" module="{{ $t->module_id }}">{{ $t->module_id }}</span>
|
<span class="module_name" module="{{ $t->module_id }}">{{ $t->module_id }}</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@ -38,9 +38,11 @@
|
|||||||
{{ $t->description }}
|
{{ $t->description }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ route('admin.users.edit', $t->user_id) }}">{{ $t->user_id }}</a>
|
@if ($t->user_id)
|
||||||
<br/>
|
<a href="{{ route('admin.users.edit', $t->user_id) }}">{{ $t->user_id }}</a>
|
||||||
<a href="?user_id={{ $t->user_id }}">筛选</a>
|
<br/>
|
||||||
|
<a href="?user_id={{ $t->user_id }}">筛选</a>
|
||||||
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@if ($t->host_id)
|
@if ($t->host_id)
|
||||||
@ -63,7 +65,13 @@
|
|||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
{{ $t->user_remain ?? $t->balance }} 元
|
@if ($t->user_id)
|
||||||
|
用户 {{ $t->user_remain }} 元
|
||||||
|
@endif
|
||||||
|
<br/>
|
||||||
|
@if ($t->module_id)
|
||||||
|
模块 {{ $t->module_remain }} 元
|
||||||
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ $t->created_at }}
|
{{ $t->created_at }}
|
||||||
|
Loading…
Reference in New Issue
Block a user