184 lines
5.2 KiB
Vue
184 lines
5.2 KiB
Vue
|
<script setup lang="ts">
|
||
|
import { ref } from "vue";
|
||
|
import { useLogin } from "./utils/hook";
|
||
|
import { getPickerShortcuts } from "../utils";
|
||
|
import { PureTableBar } from "@/components/RePureTableBar";
|
||
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||
|
import { useI18n } from "vue-i18n";
|
||
|
import Plane from "@iconify-icons/ri/plane-line";
|
||
|
import Refresh from "@iconify-icons/ep/refresh";
|
||
|
|
||
|
defineOptions({
|
||
|
name: "MonitorLogin"
|
||
|
});
|
||
|
|
||
|
const { t } = useI18n();
|
||
|
const formRef = ref();
|
||
|
const tableRef = ref();
|
||
|
|
||
|
const {
|
||
|
form,
|
||
|
loading,
|
||
|
columns,
|
||
|
dataList,
|
||
|
pagination,
|
||
|
selectedNum,
|
||
|
onSearch,
|
||
|
deleteUserHandle,
|
||
|
resetForm,
|
||
|
onbatchDel,
|
||
|
onSelectionCancel,
|
||
|
handleCurrentChange,
|
||
|
handleSizeChange,
|
||
|
handleSelectionChange
|
||
|
} = useLogin(tableRef);
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="main">
|
||
|
<el-form
|
||
|
ref="formRef"
|
||
|
:inline="true"
|
||
|
:model="form"
|
||
|
class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px] overflow-auto"
|
||
|
>
|
||
|
<el-form-item label="用户名" prop="username">
|
||
|
<el-input
|
||
|
v-model="form.username"
|
||
|
placeholder="请输入用户名"
|
||
|
clearable
|
||
|
class="!w-[150px]"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="登录状态" prop="status">
|
||
|
<el-select
|
||
|
v-model="form.status"
|
||
|
placeholder="请选择"
|
||
|
clearable
|
||
|
class="!w-[150px]"
|
||
|
>
|
||
|
<el-option label="成功" value="1" />
|
||
|
<el-option label="失败" value="0" />
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="登录时间" prop="loginTime">
|
||
|
<el-date-picker
|
||
|
v-model="form.loginTime"
|
||
|
:shortcuts="getPickerShortcuts()"
|
||
|
type="datetimerange"
|
||
|
range-separator="至"
|
||
|
start-placeholder="开始日期时间"
|
||
|
end-placeholder="结束日期时间"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button
|
||
|
type="primary"
|
||
|
:icon="useRenderIcon('ri:search-line')"
|
||
|
:loading="loading"
|
||
|
@click="onSearch"
|
||
|
>
|
||
|
{{ t("buttons:Search") }}
|
||
|
</el-button>
|
||
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)">
|
||
|
{{ t("buttons:Reset") }}
|
||
|
</el-button>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
|
||
|
<PureTableBar title="登录日志" :columns="columns" @refresh="onSearch">
|
||
|
<!-- <template #buttons>
|
||
|
<el-popconfirm title="确定要删除所有日志数据吗?" @confirm="clearAll">
|
||
|
<template #reference>
|
||
|
<el-button type="danger" :icon="useRenderIcon(Delete)">
|
||
|
清空日志
|
||
|
</el-button>
|
||
|
</template>
|
||
|
</el-popconfirm>
|
||
|
</template> -->
|
||
|
<template v-slot="{ size, dynamicColumns }">
|
||
|
<div
|
||
|
v-if="selectedNum > 0"
|
||
|
v-motion-fade
|
||
|
class="bg-[var(--el-fill-color-light)] w-full h-[46px] mb-2 pl-4 flex items-center"
|
||
|
>
|
||
|
<div class="flex-auto">
|
||
|
<span
|
||
|
style="font-size: var(--el-font-size-base)"
|
||
|
class="text-[rgba(42,46,54,0.5)] dark:text-[rgba(220,220,242,0.5)]"
|
||
|
>
|
||
|
已选 {{ selectedNum }} 项
|
||
|
</span>
|
||
|
<el-button type="primary" text @click="onSelectionCancel">
|
||
|
{{ t("buttons:Deselect") }}
|
||
|
</el-button>
|
||
|
</div>
|
||
|
<el-popconfirm title="是否确认删除?" @confirm="onbatchDel">
|
||
|
<template #reference>
|
||
|
<el-button type="danger" text class="mr-1">
|
||
|
{{ t("buttons:DeleteInBatches") }}
|
||
|
</el-button>
|
||
|
</template>
|
||
|
</el-popconfirm>
|
||
|
</div>
|
||
|
<pure-table
|
||
|
ref="tableRef"
|
||
|
row-key="id"
|
||
|
align-whole="center"
|
||
|
table-layout="auto"
|
||
|
:loading="loading"
|
||
|
:size="size"
|
||
|
adaptive
|
||
|
:adaptiveConfig="{ offsetBottom: 108 }"
|
||
|
:data="dataList"
|
||
|
:columns="dynamicColumns"
|
||
|
:pagination="{ ...pagination, size }"
|
||
|
:header-cell-style="{
|
||
|
background: 'var(--el-fill-color-light)',
|
||
|
color: 'var(--el-text-color-primary)'
|
||
|
}"
|
||
|
@selection-change="handleSelectionChange"
|
||
|
@page-size-change="handleSizeChange"
|
||
|
@page-current-change="handleCurrentChange"
|
||
|
>
|
||
|
<template #operation="{ row }">
|
||
|
<el-popconfirm
|
||
|
:title="`是否强制下线${row.username}`"
|
||
|
@confirm="deleteUserHandle(row.session_id)"
|
||
|
>
|
||
|
<template #reference>
|
||
|
<el-button
|
||
|
class="reset-margin"
|
||
|
link
|
||
|
type="primary"
|
||
|
:disabled="!row.online"
|
||
|
:size="size"
|
||
|
:icon="useRenderIcon(Plane)"
|
||
|
>
|
||
|
{{ t("buttons:ForceToExit") }}
|
||
|
</el-button>
|
||
|
</template>
|
||
|
</el-popconfirm>
|
||
|
</template>
|
||
|
</pure-table>
|
||
|
</template>
|
||
|
</PureTableBar>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
:deep(.el-dropdown-menu__item i) {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.main-content {
|
||
|
margin: 24px 24px 0 !important;
|
||
|
}
|
||
|
|
||
|
.search-form {
|
||
|
:deep(.el-form-item) {
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|