mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 07:57:18 +08:00
196 lines
5.3 KiB
Vue
196 lines
5.3 KiB
Vue
<script setup lang="ts">
|
||
import { ref } from "vue";
|
||
import { useLoginLogHook } from "./utils/hook";
|
||
import { PureTableBar } from "@/components/RePureTableBar";
|
||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||
|
||
import Delete from "@iconify-icons/ep/delete";
|
||
import Search from "@iconify-icons/ep/search";
|
||
import Refresh from "@iconify-icons/ep/refresh";
|
||
import { useUserStoreHook } from "@/store/modules/user";
|
||
// TODO 这个导入声明好长 看看如何优化
|
||
import { CommonUtils } from "@/utils/common";
|
||
|
||
/** 组件name最好和菜单表中的router_name一致 */
|
||
defineOptions({
|
||
name: "SystemOperationLog"
|
||
});
|
||
|
||
const loginLogStatusList =
|
||
useUserStoreHook().dictionaryList["sysLoginLog.status"];
|
||
|
||
const tableRef = ref();
|
||
|
||
const searchFormRef = ref();
|
||
const {
|
||
searchFormParams,
|
||
pageLoading,
|
||
columns,
|
||
dataList,
|
||
pagination,
|
||
timeRange,
|
||
defaultSort,
|
||
multipleSelection,
|
||
onSearch,
|
||
resetForm,
|
||
exportAllExcel,
|
||
getLoginLogList,
|
||
handleDelete,
|
||
handleBulkDelete
|
||
} = useLoginLogHook();
|
||
</script>
|
||
|
||
<template>
|
||
<div class="main">
|
||
<!-- 搜索栏 -->
|
||
<el-form
|
||
ref="searchFormRef"
|
||
:inline="true"
|
||
:model="searchFormParams"
|
||
class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px]"
|
||
>
|
||
<el-form-item label="登录IP:" prop="ipAddress">
|
||
<el-input
|
||
v-model="searchFormParams.ipAddress"
|
||
placeholder="请输入IP地址"
|
||
clearable
|
||
class="!w-[200px]"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="用户名:" prop="username">
|
||
<el-input
|
||
v-model="searchFormParams.username"
|
||
placeholder="请选择用户名称"
|
||
clearable
|
||
class="!w-[200px]"
|
||
/>
|
||
</el-form-item>
|
||
|
||
<el-form-item label="状态:" prop="status">
|
||
<el-select
|
||
v-model="searchFormParams.status"
|
||
placeholder="请选择状态"
|
||
clearable
|
||
class="!w-[180px]"
|
||
>
|
||
<el-option
|
||
v-for="dict in loginLogStatusList"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<label class="el-form-item__label is-required font-bold"
|
||
>登录时间:</label
|
||
>
|
||
<!-- TODO 如何消除这个v-model的warning -->
|
||
<el-date-picker
|
||
class="!w-[240px]"
|
||
v-model="timeRange"
|
||
value-format="YYYY-MM-DD"
|
||
type="daterange"
|
||
range-separator="-"
|
||
start-placeholder="开始日期"
|
||
end-placeholder="结束日期"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button
|
||
type="primary"
|
||
:icon="useRenderIcon(Search)"
|
||
:loading="pageLoading"
|
||
@click="onSearch"
|
||
>
|
||
搜索
|
||
</el-button>
|
||
<el-button
|
||
:icon="useRenderIcon(Refresh)"
|
||
@click="resetForm(searchFormRef, tableRef)"
|
||
>
|
||
重置
|
||
</el-button>
|
||
</el-form-item>
|
||
</el-form>
|
||
|
||
<!-- table bar 包裹 table -->
|
||
<PureTableBar title="登录日志列表" :columns="columns" @refresh="onSearch">
|
||
<!-- 表格操作栏 -->
|
||
<template #buttons>
|
||
<el-button
|
||
type="danger"
|
||
:icon="useRenderIcon(Delete)"
|
||
@click="handleBulkDelete(tableRef)"
|
||
>
|
||
批量删除
|
||
</el-button>
|
||
<el-button
|
||
type="primary"
|
||
@click="CommonUtils.exportExcel(columns, dataList, '登录日志列表')"
|
||
>单页导出</el-button
|
||
>
|
||
<el-button type="primary" @click="exportAllExcel">全部导出</el-button>
|
||
</template>
|
||
<template v-slot="{ size, dynamicColumns }">
|
||
<pure-table
|
||
border
|
||
ref="tableRef"
|
||
align-whole="center"
|
||
showOverflowTooltip
|
||
table-layout="auto"
|
||
:loading="pageLoading"
|
||
:size="size"
|
||
adaptive
|
||
:data="dataList"
|
||
:columns="dynamicColumns"
|
||
:default-sort="defaultSort"
|
||
:pagination="pagination"
|
||
:paginationSmall="size === 'small' ? true : false"
|
||
:header-cell-style="{
|
||
background: 'var(--el-table-row-hover-bg-color)',
|
||
color: 'var(--el-text-color-primary)'
|
||
}"
|
||
@page-size-change="getLoginLogList"
|
||
@page-current-change="getLoginLogList"
|
||
@sort-change="getLoginLogList"
|
||
@selection-change="
|
||
rows => (multipleSelection = rows.map(item => item.logId))
|
||
"
|
||
>
|
||
<template #operation="{ row }">
|
||
<el-popconfirm
|
||
:title="`是否确认删除编号为${row.logId}的这条日志`"
|
||
@confirm="handleDelete(row)"
|
||
>
|
||
<template #reference>
|
||
<el-button
|
||
class="reset-margin"
|
||
link
|
||
type="danger"
|
||
:size="size"
|
||
:icon="useRenderIcon(Delete)"
|
||
>
|
||
删除
|
||
</el-button>
|
||
</template>
|
||
</el-popconfirm>
|
||
</template>
|
||
</pure-table>
|
||
</template>
|
||
</PureTableBar>
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped lang="scss">
|
||
:deep(.el-dropdown-menu__item i) {
|
||
margin: 0;
|
||
}
|
||
|
||
.search-form {
|
||
:deep(.el-form-item) {
|
||
margin-bottom: 12px;
|
||
}
|
||
}
|
||
</style>
|