ruoyi-plus-soybean/src/views/monitor/logininfor/index.vue

279 lines
7.3 KiB
Vue
Raw Normal View History

2025-04-16 22:22:09 +08:00
<script setup lang="tsx">
import { NDivider } from 'naive-ui';
import {
fetchBatchDeleteLoginInfor,
fetchCleanLoginInfor,
fetchGetLoginInforList,
fetchUnlockLoginInfor
} from '@/service/api/monitor/login-infor';
2025-04-16 22:22:09 +08:00
import { useAppStore } from '@/store/modules/app';
import { useAuth } from '@/hooks/business/auth';
2025-04-16 22:22:09 +08:00
import { useDownload } from '@/hooks/business/download';
import { useTable, useTableOperate } from '@/hooks/common/table';
import { useDict } from '@/hooks/business/dict';
import { getBrowserIcon, getOsIcon } from '@/utils/icon-tag-format';
2025-04-16 22:22:09 +08:00
import DictTag from '@/components/custom/dict-tag.vue';
import SvgIcon from '@/components/custom/svg-icon.vue';
import { $t } from '@/locales';
2025-05-09 20:26:55 +08:00
import ButtonIcon from '@/components/custom/button-icon.vue';
2025-04-16 22:22:09 +08:00
import LoginInforSearch from './modules/login-infor-search.vue';
import LoginInforViewDrawer from './modules/login-infor-view-drawer.vue';
2025-04-16 22:22:09 +08:00
defineOptions({
name: 'LoginInforList'
});
const appStore = useAppStore();
const { download } = useDownload();
const { hasAuth } = useAuth();
useDict('sys_common_status');
useDict('sys_device_type');
const {
columns,
columnChecks,
data,
getData,
getDataByPage,
loading,
mobilePagination,
searchParams,
resetSearchParams
} = useTable({
apiFn: fetchGetLoginInforList,
apiParams: {
pageNum: 1,
pageSize: 10,
// if you want to use the searchParams in Form, you need to define the following properties, and the value is null
// the value can not be undefined, otherwise the property in Form will not be reactive
userName: null,
ipaddr: null,
status: null,
params: {}
2025-04-16 22:22:09 +08:00
},
columns: () => [
{
type: 'selection',
align: 'center',
width: 48
},
{
key: 'index',
title: $t('common.index'),
align: 'center',
width: 64
},
{
key: 'userName',
title: '用户账号',
align: 'center',
minWidth: 120
},
{
key: 'deviceType',
title: '设备类型',
align: 'center',
minWidth: 120,
render: row => {
return <DictTag size="small" value={row.deviceType} dict-code="sys_device_type" />;
}
},
{
key: 'ipaddr',
title: '登录IP地址',
align: 'center',
minWidth: 120
},
{
key: 'loginLocation',
title: '登录地点',
align: 'center',
minWidth: 120
},
{
key: 'browser',
title: '浏览器类型',
align: 'center',
minWidth: 120,
render: row => {
return (
2025-04-27 23:28:53 +08:00
<div class="flex items-center justify-center gap-2">
2025-04-16 22:22:09 +08:00
<SvgIcon icon={getBrowserIcon(row.browser)} />
{row.browser}
</div>
);
}
},
{
key: 'os',
title: '操作系统',
align: 'center',
ellipsis: {
tooltip: true
},
minWidth: 120,
render: row => {
const osName = row.os?.split(' or ')[0] ?? '';
return (
2025-04-27 23:28:53 +08:00
<div class="flex items-center justify-center gap-2">
2025-04-16 22:22:09 +08:00
<SvgIcon icon={getOsIcon(osName)} />
{osName}
</div>
);
}
},
{
key: 'status',
title: '登录状态',
align: 'center',
minWidth: 120,
render: row => {
return <DictTag size="small" value={row.status} dict-code="sys_common_status" />;
}
},
{
key: 'loginTime',
title: '访问时间',
align: 'center',
ellipsis: {
tooltip: true
},
minWidth: 120
},
{
key: 'operate',
title: $t('common.operate'),
align: 'center',
width: 130,
render: row => {
const viewBtn = () => {
return (
2025-05-09 20:26:55 +08:00
<ButtonIcon
type="primary"
text
icon="material-symbols:visibility-outline"
tooltipContent="详情"
onClick={() => view(row.infoId!)}
/>
2025-04-16 22:22:09 +08:00
);
};
const unlockBtn = () => {
return (
<>
<NDivider vertical />
<ButtonIcon
type="primary"
text
icon="material-symbols:lock-open-outline"
tooltipContent="解锁"
popconfirmContent={`确认解锁用户 ${row.userName} 吗?`}
onPositiveClick={() => handleUnlockLoginInfor(row.userName!)}
/>
</>
);
};
return (
<div class="flex-center gap-8px">
{viewBtn()}
{unlockBtn()}
</div>
);
2025-04-16 22:22:09 +08:00
}
}
]
});
const { drawerVisible, editingData, handleEdit, checkedRowKeys, onBatchDeleted } = useTableOperate(data, getData);
async function handleBatchDelete() {
// request
const { error } = await fetchBatchDeleteLoginInfor(checkedRowKeys.value);
if (error) return;
onBatchDeleted();
}
async function view(infoId: CommonType.IdType) {
handleEdit('infoId', infoId);
}
async function handleExport() {
download('/monitor/logininfor/export', searchParams, `登录日志记录_${new Date().getTime()}.xlsx`);
}
async function handleCleanLoginInfor() {
window.$dialog?.error({
title: '提示',
content: '是否确认清空所有登录日志数据项?',
positiveText: '确认清空',
negativeText: '取消',
onPositiveClick: async () => {
const { error } = await fetchCleanLoginInfor();
if (error) return;
window.$message?.success('清空成功');
await getData();
}
});
}
async function handleUnlockLoginInfor(username: string) {
const { error } = await fetchUnlockLoginInfor(username);
if (error) return;
window.$message?.success('解锁成功');
await getDataByPage();
}
2025-04-16 22:22:09 +08:00
</script>
<template>
<div class="min-h-500px flex-col-stretch gap-16px overflow-hidden lt-sm:overflow-auto">
<LoginInforSearch v-model:model="searchParams" @reset="resetSearchParams" @search="getDataByPage" />
<NCard title="登录日志列表" :bordered="false" size="small" class="card-wrapper sm:flex-1-hidden">
2025-04-16 22:22:09 +08:00
<template #header-extra>
<TableHeaderOperation
v-model:columns="columnChecks"
:disabled-delete="checkedRowKeys.length === 0"
:loading="loading"
:show-add="false"
:show-delete="hasAuth('monitor:logininfor:remove')"
:show-export="hasAuth('monitor:logininfor:export')"
@delete="handleBatchDelete"
@export="handleExport"
@refresh="getData"
>
<template #prefix>
<NButton
v-if="hasAuth('monitor:logininfor:remove')"
type="error"
ghost
size="small"
@click="handleCleanLoginInfor"
>
<template #icon>
<icon-material-symbols:warning-outline-rounded />
</template>
清空
</NButton>
</template>
</TableHeaderOperation>
2025-04-16 22:22:09 +08:00
</template>
<NDataTable
v-model:checked-row-keys="checkedRowKeys"
:columns="columns"
:data="data"
size="small"
:flex-height="!appStore.isMobile"
:scroll-x="962"
:loading="loading"
remote
:row-key="row => row.infoId"
:pagination="mobilePagination"
class="sm:h-full"
/>
<LoginInforViewDrawer v-model:visible="drawerVisible" :row-data="editingData" />
</NCard>
</div>
</template>
<style scoped></style>