初始化
This commit is contained in:
94
WebUI/Views/Server/BLV_UdpDebug.cshtml
Normal file
94
WebUI/Views/Server/BLV_UdpDebug.cshtml
Normal file
@@ -0,0 +1,94 @@
|
||||
@*
|
||||
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||||
*@
|
||||
@{
|
||||
ViewData["Title"] = "巫工调试信息";
|
||||
}
|
||||
<style>
|
||||
*::-webkit-scrollbar {
|
||||
height: 0;
|
||||
width: 0;
|
||||
color:transparent;
|
||||
}
|
||||
</style>
|
||||
<!-- 内容标题(页面标题) -->
|
||||
<div class="content-header" style="padding: 5px 0.5rem;">
|
||||
<div class="container-fluid " >
|
||||
<div class="row" >
|
||||
<div class="col-12" onclick ="titlehiede(this);"; >
|
||||
<h5 style='padding: 7.5px;' class="m-0 text-white bg-info">@ViewData["Title"]</h5>
|
||||
</div>
|
||||
<!-- /.col -->
|
||||
|
||||
<div class="col-12 col-md-6" >
|
||||
<div class="input-group input-group-sm " style='padding-left:0; margin:1PX 0 !important;'>
|
||||
<span class="input-group-append m-0" >
|
||||
<button type="button" class="b-0 btn btn-flat">每页数量</button>
|
||||
</span>
|
||||
<select id="pagelength" onchange="lengthCHANGE(this)" class="form-control">
|
||||
<option value=15>15</option>
|
||||
<option value=25>25</option>
|
||||
<option value=35>35</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-0 col-md-6" >
|
||||
</div>
|
||||
<div class="col-12 col-md-6" >
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text"><i class="far fa-clock"></i></span>
|
||||
</div>
|
||||
<input type="text" class="form-control float-right" id="reservationtime">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-4 col-md-6" >
|
||||
<div class="icheck-info">
|
||||
<input type="checkbox" id="remember">
|
||||
<label style="font-weight:normal;" for="remember">
|
||||
自动刷新
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-2" >
|
||||
<div class="input-group input-group-sm " style='padding-left:0; margin:1PX 0 !important;'>
|
||||
<button type="button" onclick="search_result()" class="b-0 btn btn-info btn-sm btn-flat">查询</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- /.col -->
|
||||
</div><!-- /.row -->
|
||||
</div>
|
||||
<!-- /.container-fluid -->
|
||||
</div>
|
||||
<!-- /.content-header -->
|
||||
|
||||
<!-- 主体内容 -->
|
||||
<section class="content">
|
||||
<div class="container-fluid table-responsive ">
|
||||
<table style=" line-height: normal;" class="table table-borderless" id="dataTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>SN</th>
|
||||
<th>创建时间</th>
|
||||
<th>接收时间</th>
|
||||
<th>类型</th>
|
||||
<th>自定义</th>
|
||||
<th>长度</th>
|
||||
<th>接收延迟</th>
|
||||
<th>处理耗时</th>
|
||||
<th>调试信息1</th>
|
||||
<th>调试信息2</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- /.container-fluid -->
|
||||
</section>
|
||||
<!-- /.content -->
|
||||
<script defer src="~/js/jquery.dataTables.min.js"></script>
|
||||
<script defer src="~/js/dataTables.bootstrap4.min.js"></script>
|
||||
<script defer src="~/js_custom/BLV_UdpDebug.js" charset="GBK"></script>
|
||||
Reference in New Issue
Block a user