fix: 优化顶部标签页的滚动条
Build and Deploy Vue3 / build (push) Successful in 1m32s
Build and Deploy Vue3 / deploy (push) Successful in 1m13s

This commit is contained in:
2026-04-21 15:16:32 +08:00
parent 13248468d3
commit 2e073c2b87
2 changed files with 76 additions and 67 deletions
+3 -2
View File
@@ -121,7 +121,7 @@
<!-- 右侧记录栏 -->
<div class="right-column">
<el-card class="tabs-card" shadow="never">
<el-tabs v-model="activeTabName" @tab-click="handleTabClick" class="custom-tabs">
<el-tabs v-model="activeTabName" @tab-click="handleTabClick" ref="recordTabsRef" class="custom-tabs">
<el-tab-pane label="登录记录" name="1">
<el-table :data="loginHistory" v-loading="loginHistoryLoading" stripe style="width: 100%">
<el-table-column prop="CreatedAt" label="时间" width="180">
@@ -545,7 +545,8 @@ const userInfo = ref({})
const loading = ref(false)
// 标签页相关
const activeTabName = ref('1') // 默认选中登录记录
const activeTabName = ref('1')
const recordTabsRef = ref(null)
// 登录记录相关
const loginHistory = ref([])