mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-11-29 18:38:32 +08:00
🔨 perf(web): 系统管理中用户登录日志无法分页
This commit is contained in:
parent
d193348765
commit
1a91af99dc
@ -11,6 +11,7 @@
|
||||
5. 【server】修复 docker管理新增docker选择证书界面权重异常 (感谢[@伤感的风铃草](https://gitee.com/bwy-flc) [Gitee issues I9GYVA](https://gitee.com/dromara/Jpom/issues/I9GYVA) )
|
||||
6. 【server】修复 系统管理中用户管理中登录日志无法筛选
|
||||
7. 【server】优化 用户登录记录操作日志(保证操作监控能记录)
|
||||
8. 【server】修复 系统管理中用户登录日志无法分页
|
||||
|
||||
------
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
:active-page="activePage"
|
||||
table-name="systemUserLoginLog"
|
||||
empty-description="没有任何登录日志"
|
||||
:loading="loading"
|
||||
:data-source="list"
|
||||
:columns="columns"
|
||||
:pagination="pagination"
|
||||
@ -122,18 +123,23 @@ const columns = ref<CustomColumnType[]>([
|
||||
{ title: '浏览器', dataIndex: 'userAgent', ellipsis: true, width: 100 }
|
||||
])
|
||||
|
||||
const pagination = COMPUTED_PAGINATION(listQuery.value)
|
||||
const pagination = computed(() => {
|
||||
return COMPUTED_PAGINATION(listQuery.value)
|
||||
})
|
||||
|
||||
const loadData = (pointerEvent?: any) => {
|
||||
loading.value = true
|
||||
listQuery.value.page = pointerEvent?.altKey || pointerEvent?.ctrlKey ? 1 : listQuery.value.page
|
||||
userLoginLgin(listQuery.value).then((res) => {
|
||||
if (res.code === 200) {
|
||||
list.value = res.data.result
|
||||
listQuery.value.total = res.data.total
|
||||
}
|
||||
loading.value = false
|
||||
})
|
||||
userLoginLgin(listQuery.value)
|
||||
.then((res) => {
|
||||
if (res.code === 200) {
|
||||
list.value = res.data.result
|
||||
listQuery.value.total = res.data.total
|
||||
}
|
||||
})
|
||||
.finally(() => {
|
||||
loading.value = false
|
||||
})
|
||||
}
|
||||
|
||||
const change = (pagination: any, filters: any, sorter: any) => {
|
||||
|
Loading…
Reference in New Issue
Block a user