feat(analytics): 添加按最新访问排序功能

在访问统计页面增加按最新访问排序的选项,并优化加载状态管理
修改相关API以支持排序参数,同时调整页面布局和样式
This commit is contained in:
anghunk
2026-01-22 09:42:39 +08:00
parent 6c1651b4e9
commit 4550b3c972
6 changed files with 118 additions and 21 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="app-root">
<router-view />
</div>
<div class="app-root">
<router-view />
</div>
</template>
<script setup lang="ts"></script>
@@ -11,13 +11,12 @@ html,
body,
#app,
.app-root {
height: 100%;
height: 100%;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: #f5f5f5;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background-color: #f5f5f5;
}
</style>