移除 overflow-auto

This commit is contained in:
iVampireSP.com 2023-02-13 17:05:47 +08:00
parent d72a9f4eb9
commit 747950814e
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -6,7 +6,7 @@
<h3>主机管理</h3> <h3>主机管理</h3>
<p>更快捷的管理计费项目。更高级的管理请前往 "仪表盘"</p> <p>更快捷的管理计费项目。更高级的管理请前往 "仪表盘"</p>
<div class="overflow-auto"> <div>
<table class="table table-hover"> <table class="table table-hover">
<thead> <thead>
<th>ID</th> <th>ID</th>
@ -54,26 +54,67 @@
</span> </span>
</td> </td>
<td> <td>
<form action="{{ route('hosts.destroy', $host) }}" method="post" class="d-inline"> <div class="dropdown">
@csrf <button class="btn btn-sm btn-secondary dropdown-toggle" type="button"
@method('DELETE') data-bs-toggle="dropdown"
aria-expanded="false">
<button type="submit" class="btn btn-sm btn-danger" 操作
onclick="return confirm('删除后,数据将无法找回,也不可回滚更改。')">删除
</button> </button>
</form> <ul class="dropdown-menu">
@if($host->billing_cycle) @if($host->billing_cycle)
<form action="{{ route('hosts.renew', $host) }}" method="post" class="d-inline"> <a class="dropdown-item" href="#"
@csrf onclick="return confirm('确定续费此主机?') ? document.getElementById('renew-{{$host->id}}').submit() : false;">
续费此主机
</a>
<button type="submit" class="btn btn-sm btn-primary" <form action="{{ route('hosts.renew', $host) }}" id="renew-{{$host->id}}"
onclick="return confirm('将续费此主机。')">续费 method="post" class="d-none">
</button> @csrf
</form> </form>
@endif @endif
@if(!$host->isRunning())
<a class="dropdown-item" href="#"
onclick="return confirm('确定执行此操作?') ? document.getElementById('start-{{$host->id}}').submit() : false;">
启动此主机
</a>
<form action="{{ route('hosts.update', $host) }}" id="start-{{$host->id}}"
method="post" class="d-none">
@csrf
@method('PATCH')
<input type="hidden" name="status" value="running">
</form>
@endif
@if(!$host->isSuspended() && !$host->isCycle())
<a class="dropdown-item" href="#"
onclick="return confirm('确定执行此操作?') ? document.getElementById('start-{{$host->id}}').submit() : false;">
暂停此主机
</a>
<form action="{{ route('hosts.update', $host) }}" id="start-{{$host->id}}"
method="post" class="d-none">
@csrf
@method('PATCH')
<input type="hidden" name="status" value="suspended">
</form>
@endif
<a class="dropdown-item" href="#"
onclick="return confirm('删除操作将不可恢复,确定吗?') ? document.getElementById('delete-{{$host->id}}').submit() : false;">
删除
</a>
<form action="{{ route('hosts.destroy', $host) }}" id="delete-{{$host->id}}"
method="post" class="d-none">
@csrf
@method('DELETE')
</form>
</ul>
</div>
</td> </td>
</tr> </tr>
@endforeach @endforeach
@ -84,4 +125,7 @@
{{-- 分页 --}} {{-- 分页 --}}
{{ $hosts->links() }} {{ $hosts->links() }}
<br/>
<p>还剩下周期性计费删除次数: {{ $times }}</p>
@endsection @endsection