mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-10-04 16:57:10 +08:00
141 lines
4.1 KiB
Vue
141 lines
4.1 KiB
Vue
<template>
|
|
<GiTable
|
|
row-key="id"
|
|
:data="dataList"
|
|
:columns="columns"
|
|
:loading="loading"
|
|
:scroll="{ x: '100%', y: '100%', minWidth: 1000 }"
|
|
:pagination="pagination"
|
|
:disabled-tools="['size', 'setting']"
|
|
@filter-change="filterChange"
|
|
@refresh="search"
|
|
>
|
|
<template #toolbar-left>
|
|
<a-input v-model="queryForm.createUserString" placeholder="请输入登录用户" allow-clear @change="search">
|
|
<template #prefix><icon-search /></template>
|
|
</a-input>
|
|
<a-input v-model="queryForm.ip" placeholder="请输入登录 IP 或地点" allow-clear @change="search">
|
|
<template #prefix><icon-search /></template>
|
|
</a-input>
|
|
<DateRangePicker v-model="queryForm.createTime" @change="search" />
|
|
<a-button @click="reset">
|
|
<template #icon><icon-refresh /></template>
|
|
<template #default>重置</template>
|
|
</a-button>
|
|
</template>
|
|
<template #toolbar-right>
|
|
<a-button v-permission="['monitor:log:export']" @click="onExport">
|
|
<template #icon>
|
|
<icon-download />
|
|
</template>
|
|
<template #default>导出</template>
|
|
</a-button>
|
|
</template>
|
|
<template #status="{ record }">
|
|
<a-tag v-if="record.status === 1" color="green">
|
|
<GiDot type="success" style="width: 5px; height: 5px" />
|
|
<span style="margin-left: 5px">成功</span>
|
|
</a-tag>
|
|
<a-tooltip v-else :content="record.errorMsg">
|
|
<a-tag color="red" style="cursor: pointer">
|
|
<GiDot type="danger" style="width: 5px; height: 5px" />
|
|
<span style="margin-left: 5px">失败</span>
|
|
</a-tag>
|
|
</a-tooltip>
|
|
</template>
|
|
</GiTable>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import dayjs from 'dayjs'
|
|
import { type LogQuery, exportLoginLog, listLog } from '@/apis/monitor'
|
|
import type { TableInstanceColumns } from '@/components/GiTable/type'
|
|
import DateRangePicker from '@/components/DateRangePicker/index.vue'
|
|
import { useDownload, useTable } from '@/hooks'
|
|
|
|
defineOptions({ name: 'LoginLog' })
|
|
|
|
const queryForm = reactive<LogQuery>({
|
|
module: '登录',
|
|
createTime: [
|
|
dayjs().subtract(6, 'day').startOf('day').format('YYYY-MM-DD HH:mm:ss'),
|
|
dayjs().endOf('day').format('YYYY-MM-DD HH:mm:ss')
|
|
],
|
|
sort: ['createTime,desc']
|
|
})
|
|
|
|
const {
|
|
tableData: dataList,
|
|
loading,
|
|
pagination,
|
|
search
|
|
} = useTable((page) => listLog({ ...queryForm, ...page }), { immediate: true })
|
|
|
|
const columns: TableInstanceColumns[] = [
|
|
{
|
|
title: '序号',
|
|
width: 66,
|
|
align: 'center',
|
|
render: ({ rowIndex }) => h('span', {}, rowIndex + 1 + (pagination.current - 1) * pagination.pageSize)
|
|
},
|
|
{ title: '登录时间', dataIndex: 'createTime', width: 180 },
|
|
{ title: '用户昵称', dataIndex: 'createUserString', ellipsis: true, tooltip: true },
|
|
{ title: '登录行为', dataIndex: 'description' },
|
|
{
|
|
title: '状态',
|
|
slotName: 'status',
|
|
align: 'center',
|
|
filterable: {
|
|
filters: [
|
|
{
|
|
text: '成功',
|
|
value: '1'
|
|
},
|
|
{
|
|
text: '失败',
|
|
value: '2'
|
|
}
|
|
],
|
|
filter: () => {
|
|
return true
|
|
},
|
|
alignLeft: true
|
|
}
|
|
},
|
|
{ title: '登录 IP', dataIndex: 'ip', ellipsis: true, tooltip: true },
|
|
{ title: '登录地点', dataIndex: 'address', ellipsis: true, tooltip: true },
|
|
{ title: '浏览器', dataIndex: 'browser', ellipsis: true, tooltip: true },
|
|
{ title: '终端系统', dataIndex: 'os', ellipsis: true, tooltip: true }
|
|
]
|
|
|
|
// 重置
|
|
const reset = () => {
|
|
queryForm.ip = undefined
|
|
queryForm.createUserString = undefined
|
|
queryForm.createTime = [
|
|
dayjs().subtract(6, 'day').startOf('day').format('YYYY-MM-DD HH:mm:ss'),
|
|
dayjs().endOf('day').format('YYYY-MM-DD HH:mm:ss')
|
|
]
|
|
queryForm.status = undefined
|
|
search()
|
|
}
|
|
|
|
// 过滤查询
|
|
const filterChange = (dataIndex, filteredValues) => {
|
|
try {
|
|
const slotName = columns[dataIndex.split('_').pop()].slotName as string
|
|
queryForm[slotName] = filteredValues.join(',')
|
|
search()
|
|
} catch (error) {
|
|
search()
|
|
}
|
|
}
|
|
|
|
// 导出
|
|
const onExport = () => {
|
|
useDownload(() => exportLoginLog(queryForm))
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|