现在系统日志的发生时间列将以更直观、易识别的格式显示,提升了用户体验。

This commit is contained in:
Alex Yang
2025-12-05 00:10:42 +08:00
parent 52155cb77c
commit baeece18ef
4 changed files with 62 additions and 23 deletions

View File

@@ -363,7 +363,18 @@
<br>
<!-- 进程信息展示 -->
<div id="processInfoContainer" class="mt-8">
<h3 class="text-lg font-semibold text-gray-900 mb-4">进程信息</h3>
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold text-gray-900">进程信息</h3>
<div class="flex items-center gap-2">
<label for="processPageSize" class="text-sm text-gray-600">每页显示:</label>
<select id="processPageSize" class="px-2 py-1 border border-gray-300 rounded text-sm">
<option value="5">5条</option>
<option value="10">10条</option>
<option value="20">20条</option>
<option value="50">50条</option>
</select>
</div>
</div>
<div class="overflow-x-auto">
<table id="processTable" class="min-w-full bg-white rounded-lg overflow-hidden shadow-md">
<thead class="bg-gray-50">