mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 16:07:19 +08:00
feat: 新增用户管理
This commit is contained in:
parent
d076b403c1
commit
fb14f5d075
@ -1,101 +1,100 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from "vue";
|
import { ref, watch } from "vue";
|
||||||
import { useLoginLogHook } from "./utils/hook";
|
import tree from "./tree.vue";
|
||||||
|
import { useHook } from "./hook";
|
||||||
import { PureTableBar } from "@/components/RePureTableBar";
|
import { PureTableBar } from "@/components/RePureTableBar";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
|
|
||||||
|
import Password from "@iconify-icons/ri/lock-password-line";
|
||||||
|
import More from "@iconify-icons/ep/more-filled";
|
||||||
import Delete from "@iconify-icons/ep/delete";
|
import Delete from "@iconify-icons/ep/delete";
|
||||||
|
import EditPen from "@iconify-icons/ep/edit-pen";
|
||||||
|
import Download from "@iconify-icons/ep/download";
|
||||||
|
import Upload from "@iconify-icons/ep/upload";
|
||||||
import Search from "@iconify-icons/ep/search";
|
import Search from "@iconify-icons/ep/search";
|
||||||
import Refresh from "@iconify-icons/ep/refresh";
|
import Refresh from "@iconify-icons/ep/refresh";
|
||||||
|
import AddFill from "@iconify-icons/ri/add-circle-line";
|
||||||
import { useUserStoreHook } from "@/store/modules/user";
|
import { useUserStoreHook } from "@/store/modules/user";
|
||||||
// TODO 这个导入声明好长 看看如何优化
|
|
||||||
import { CommonUtils } from "@/utils/common";
|
|
||||||
|
|
||||||
/** 组件name最好和菜单表中的router_name一致 */
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "SystemOperationLog"
|
name: "SystemUser"
|
||||||
});
|
});
|
||||||
|
|
||||||
const loginLogStatusList =
|
const formRef = ref();
|
||||||
useUserStoreHook().dictionaryList["sysLoginLog.status"];
|
|
||||||
|
|
||||||
const tableRef = ref();
|
|
||||||
|
|
||||||
const searchFormRef = ref();
|
|
||||||
const {
|
const {
|
||||||
searchFormParams,
|
searchFormParams,
|
||||||
pageLoading,
|
pageLoading,
|
||||||
columns,
|
columns,
|
||||||
dataList,
|
dataList,
|
||||||
pagination,
|
pagination,
|
||||||
timeRange,
|
buttonClass,
|
||||||
defaultSort,
|
|
||||||
multipleSelection,
|
|
||||||
onSearch,
|
onSearch,
|
||||||
resetForm,
|
resetForm,
|
||||||
exportAllExcel,
|
exportAllExcel,
|
||||||
getLoginLogList,
|
openResetPasswordDialog,
|
||||||
handleDelete,
|
handleDelete,
|
||||||
handleBulkDelete
|
openDialog,
|
||||||
} = useLoginLogHook();
|
getList,
|
||||||
|
openUploadDialog
|
||||||
|
} = useHook();
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => searchFormParams.deptId,
|
||||||
|
() => {
|
||||||
|
onSearch();
|
||||||
|
}
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<!-- 搜索栏 -->
|
<tree class="w-[17%] float-left" v-model="searchFormParams.deptId" />
|
||||||
|
<div class="float-right w-[82%]">
|
||||||
<el-form
|
<el-form
|
||||||
ref="searchFormRef"
|
ref="formRef"
|
||||||
:inline="true"
|
:inline="true"
|
||||||
:model="searchFormParams"
|
:model="searchFormParams"
|
||||||
class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px]"
|
class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px]"
|
||||||
>
|
>
|
||||||
<el-form-item label="登录IP:" prop="ipAddress">
|
<el-form-item label="用户编号:" prop="userId">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="searchFormParams.ipAddress"
|
v-model="searchFormParams.userId"
|
||||||
placeholder="请输入IP地址"
|
placeholder="请输入用户编号"
|
||||||
clearable
|
clearable
|
||||||
class="!w-[200px]"
|
class="!w-[160px]"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="用户名:" prop="username">
|
<el-form-item label="用户名称:" prop="username">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="searchFormParams.username"
|
v-model="searchFormParams.username"
|
||||||
placeholder="请选择用户名称"
|
placeholder="请输入用户名称"
|
||||||
clearable
|
clearable
|
||||||
class="!w-[200px]"
|
class="!w-[160px]"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="手机号码:" prop="phoneNumber">
|
||||||
|
<el-input
|
||||||
|
v-model="searchFormParams.phoneNumber"
|
||||||
|
placeholder="请输入手机号码"
|
||||||
|
clearable
|
||||||
|
class="!w-[160px]"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="状态:" prop="status">
|
<el-form-item label="状态:" prop="status">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="searchFormParams.status"
|
v-model="searchFormParams.status"
|
||||||
placeholder="请选择状态"
|
placeholder="请选择"
|
||||||
clearable
|
clearable
|
||||||
class="!w-[180px]"
|
class="!w-[160px]"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="dict in loginLogStatusList"
|
v-for="dict in useUserStoreHook().dictionaryList['common.status']"
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
:label="dict.label"
|
:label="dict.label"
|
||||||
:value="dict.value"
|
:value="dict.value"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</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-form-item>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
@ -105,69 +104,72 @@ const {
|
|||||||
>
|
>
|
||||||
搜索
|
搜索
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)">
|
||||||
:icon="useRenderIcon(Refresh)"
|
|
||||||
@click="resetForm(searchFormRef, tableRef)"
|
|
||||||
>
|
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<!-- table bar 包裹 table -->
|
<PureTableBar title="用户管理" :columns="columns" @refresh="onSearch">
|
||||||
<PureTableBar title="登录日志列表" :columns="columns" @refresh="onSearch">
|
|
||||||
<!-- 表格操作栏 -->
|
|
||||||
<template #buttons>
|
<template #buttons>
|
||||||
<el-button
|
<el-button
|
||||||
type="danger"
|
type="primary"
|
||||||
:icon="useRenderIcon(Delete)"
|
:icon="useRenderIcon(AddFill)"
|
||||||
@click="handleBulkDelete(tableRef)"
|
@click="openDialog('新增')"
|
||||||
>
|
>
|
||||||
批量删除
|
新增用户
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="info"
|
||||||
@click="CommonUtils.exportExcel(columns, dataList, '登录日志列表')"
|
:icon="useRenderIcon(Upload)"
|
||||||
>单页导出</el-button
|
@click="openUploadDialog"
|
||||||
>
|
>
|
||||||
<el-button type="primary" @click="exportAllExcel">全部导出</el-button>
|
导入
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
type="warning"
|
||||||
|
:icon="useRenderIcon(Download)"
|
||||||
|
@click="exportAllExcel"
|
||||||
|
>
|
||||||
|
导出
|
||||||
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
<template v-slot="{ size, dynamicColumns }">
|
<template v-slot="{ size, dynamicColumns }">
|
||||||
<pure-table
|
<pure-table
|
||||||
border
|
border
|
||||||
ref="tableRef"
|
adaptive
|
||||||
align-whole="center"
|
align-whole="center"
|
||||||
showOverflowTooltip
|
|
||||||
table-layout="auto"
|
table-layout="auto"
|
||||||
:loading="pageLoading"
|
:loading="pageLoading"
|
||||||
:size="size"
|
:size="size"
|
||||||
adaptive
|
|
||||||
:data="dataList"
|
:data="dataList"
|
||||||
:columns="dynamicColumns"
|
:columns="dynamicColumns"
|
||||||
:default-sort="defaultSort"
|
|
||||||
:pagination="pagination"
|
:pagination="pagination"
|
||||||
:paginationSmall="size === 'small' ? true : false"
|
:paginationSmall="size === 'small' ? true : false"
|
||||||
:header-cell-style="{
|
:header-cell-style="{
|
||||||
background: 'var(--el-table-row-hover-bg-color)',
|
background: 'var(--el-table-row-hover-bg-color)',
|
||||||
color: 'var(--el-text-color-primary)'
|
color: 'var(--el-text-color-primary)'
|
||||||
}"
|
}"
|
||||||
@page-size-change="getLoginLogList"
|
@page-size-change="getList"
|
||||||
@page-current-change="getLoginLogList"
|
@page-current-change="getList"
|
||||||
@sort-change="getLoginLogList"
|
|
||||||
@selection-change="
|
|
||||||
rows => (multipleSelection = rows.map(item => item.logId))
|
|
||||||
"
|
|
||||||
>
|
>
|
||||||
<template #operation="{ row }">
|
<template #operation="{ row }">
|
||||||
<el-popconfirm
|
<el-button
|
||||||
:title="`是否确认删除编号为${row.logId}的这条日志`"
|
class="reset-margin"
|
||||||
@confirm="handleDelete(row)"
|
link
|
||||||
|
type="primary"
|
||||||
|
:size="size"
|
||||||
|
@click="openDialog('编辑', row)"
|
||||||
|
:icon="useRenderIcon(EditPen)"
|
||||||
>
|
>
|
||||||
|
修改
|
||||||
|
</el-button>
|
||||||
|
<el-popconfirm title="是否确认删除?" @confirm="handleDelete(row)">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<el-button
|
<el-button
|
||||||
class="reset-margin"
|
class="reset-margin"
|
||||||
link
|
link
|
||||||
type="danger"
|
type="primary"
|
||||||
:size="size"
|
:size="size"
|
||||||
:icon="useRenderIcon(Delete)"
|
:icon="useRenderIcon(Delete)"
|
||||||
>
|
>
|
||||||
@ -175,11 +177,37 @@ const {
|
|||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-popconfirm>
|
</el-popconfirm>
|
||||||
|
<el-dropdown>
|
||||||
|
<el-button
|
||||||
|
class="ml-3 mt-[2px]"
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
:size="size"
|
||||||
|
:icon="useRenderIcon(More)"
|
||||||
|
/>
|
||||||
|
<template #dropdown>
|
||||||
|
<el-dropdown-menu>
|
||||||
|
<el-dropdown-item>
|
||||||
|
<el-button
|
||||||
|
:class="buttonClass"
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
:size="size"
|
||||||
|
:icon="useRenderIcon(Password)"
|
||||||
|
@click="openResetPasswordDialog(row)"
|
||||||
|
>
|
||||||
|
重置密码
|
||||||
|
</el-button>
|
||||||
|
</el-dropdown-item>
|
||||||
|
</el-dropdown-menu>
|
||||||
|
</template>
|
||||||
|
</el-dropdown>
|
||||||
</template>
|
</template>
|
||||||
</pure-table>
|
</pure-table>
|
||||||
</template>
|
</template>
|
||||||
</PureTableBar>
|
</PureTableBar>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user