262 lines
7.3 KiB
Vue
262 lines
7.3 KiB
Vue
<script lang="ts" setup>
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
import type { SystemDeptApi } from '#/api/system/dept';
|
|
import type { SystemUserApi } from '#/api/system/user';
|
|
|
|
import { ref } from 'vue';
|
|
|
|
import { confirm, Page, useVbenModal } from '@vben/common-ui';
|
|
import { downloadFileFromBlobPart } from '@vben/utils';
|
|
|
|
import { ElLoading, ElMessage } from 'element-plus';
|
|
|
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import {
|
|
deleteUser,
|
|
exportUser,
|
|
getUserPage,
|
|
updateUserStatus,
|
|
} from '#/api/system/user';
|
|
import { DocAlert } from '#/components/doc-alert';
|
|
import { $t } from '#/locales';
|
|
import { DICT_TYPE, getDictLabel } from '#/utils';
|
|
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
import AssignRoleForm from './modules/assign-role-form.vue';
|
|
import DeptTree from './modules/dept-tree.vue';
|
|
import Form from './modules/form.vue';
|
|
import ImportForm from './modules/import-form.vue';
|
|
import ResetPasswordForm from './modules/reset-password-form.vue';
|
|
|
|
const [FormModal, formModalApi] = useVbenModal({
|
|
connectedComponent: Form,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
const [ResetPasswordModal, resetPasswordModalApi] = useVbenModal({
|
|
connectedComponent: ResetPasswordForm,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
const [AssignRoleModal, assignRoleModalApi] = useVbenModal({
|
|
connectedComponent: AssignRoleForm,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
const [ImportModal, importModalApi] = useVbenModal({
|
|
connectedComponent: ImportForm,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
/** 刷新表格 */
|
|
function onRefresh() {
|
|
gridApi.query();
|
|
}
|
|
|
|
/** 导出表格 */
|
|
async function onExport() {
|
|
const data = await exportUser(await gridApi.formApi.getValues());
|
|
downloadFileFromBlobPart({ fileName: '用户.xls', source: data });
|
|
}
|
|
|
|
/** 选择部门 */
|
|
const searchDeptId = ref<number | undefined>(undefined);
|
|
async function onDeptSelect(dept: SystemDeptApi.Dept) {
|
|
searchDeptId.value = dept.id;
|
|
onRefresh();
|
|
}
|
|
|
|
/** 创建用户 */
|
|
function onCreate() {
|
|
formModalApi.setData(null).open();
|
|
}
|
|
|
|
/** 导入用户 */
|
|
function onImport() {
|
|
importModalApi.open();
|
|
}
|
|
|
|
/** 编辑用户 */
|
|
function onEdit(row: SystemUserApi.User) {
|
|
formModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 删除用户 */
|
|
async function onDelete(row: SystemUserApi.User) {
|
|
const loadingInstance = ElLoading.service({
|
|
text: $t('ui.actionMessage.deleting', [row.username]),
|
|
fullscreen: true,
|
|
});
|
|
try {
|
|
await deleteUser(row.id as number);
|
|
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.username]));
|
|
onRefresh();
|
|
} catch {
|
|
// 异常处理
|
|
} finally {
|
|
loadingInstance.close();
|
|
}
|
|
}
|
|
|
|
/** 重置密码 */
|
|
function onResetPassword(row: SystemUserApi.User) {
|
|
resetPasswordModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 分配角色 */
|
|
function onAssignRole(row: SystemUserApi.User) {
|
|
assignRoleModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 更新用户状态 */
|
|
async function onStatusChange(
|
|
newStatus: number,
|
|
row: SystemUserApi.User,
|
|
): Promise<boolean | undefined> {
|
|
return new Promise((resolve, reject) => {
|
|
confirm({
|
|
content: `你要将${row.username}的状态切换为【${getDictLabel(DICT_TYPE.COMMON_STATUS, newStatus)}】吗?`,
|
|
})
|
|
.then(async () => {
|
|
// 更新用户状态
|
|
const res = await updateUserStatus(row.id as number, newStatus);
|
|
if (res) {
|
|
// 提示并返回成功
|
|
ElMessage.success($t('ui.actionMessage.operationSuccess'));
|
|
resolve(true);
|
|
} else {
|
|
reject(new Error('更新失败'));
|
|
}
|
|
})
|
|
.catch(() => {
|
|
reject(new Error('取消操作'));
|
|
});
|
|
});
|
|
}
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
|
formOptions: {
|
|
schema: useGridFormSchema(),
|
|
},
|
|
gridOptions: {
|
|
columns: useGridColumns(onStatusChange),
|
|
height: 'auto',
|
|
keepSource: true,
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues) => {
|
|
return await getUserPage({
|
|
pageNo: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
deptId: searchDeptId.value,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
},
|
|
toolbarConfig: {
|
|
refresh: { code: 'query' },
|
|
search: true,
|
|
},
|
|
} as VxeTableGridOptions<SystemUserApi.User>,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height>
|
|
<template #doc>
|
|
<DocAlert title="用户体系" url="https://doc.iocoder.cn/user-center/" />
|
|
<DocAlert title="三方登陆" url="https://doc.iocoder.cn/social-user/" />
|
|
<DocAlert
|
|
title="Excel 导入导出"
|
|
url="https://doc.iocoder.cn/excel-import-and-export/"
|
|
/>
|
|
</template>
|
|
|
|
<FormModal @success="onRefresh" />
|
|
<ResetPasswordModal @success="onRefresh" />
|
|
<AssignRoleModal @success="onRefresh" />
|
|
<ImportModal @success="onRefresh" />
|
|
|
|
<div class="flex h-full w-full">
|
|
<!-- 左侧部门树 -->
|
|
<div class="h-full w-1/6 pr-4">
|
|
<DeptTree @select="onDeptSelect" />
|
|
</div>
|
|
<!-- 右侧用户列表 -->
|
|
<div class="w-5/6">
|
|
<Grid table-title="用户列表">
|
|
<template #toolbar-tools>
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('ui.actionTitle.create', ['用户']),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.ADD,
|
|
auth: ['system:user:create'],
|
|
onClick: onCreate,
|
|
},
|
|
{
|
|
label: $t('ui.actionTitle.export'),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.DOWNLOAD,
|
|
auth: ['system:user:export'],
|
|
onClick: onExport,
|
|
},
|
|
{
|
|
label: $t('ui.actionTitle.import', ['用户']),
|
|
type: 'primary',
|
|
icon: ACTION_ICON.UPLOAD,
|
|
auth: ['system:user:import'],
|
|
onClick: onImport,
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
<template #actions="{ row }">
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('common.edit'),
|
|
type: 'text',
|
|
icon: ACTION_ICON.EDIT,
|
|
auth: ['system:user:update'],
|
|
onClick: onEdit.bind(null, row),
|
|
},
|
|
{
|
|
label: $t('common.delete'),
|
|
type: 'danger',
|
|
text: true,
|
|
icon: ACTION_ICON.DELETE,
|
|
auth: ['system:user:delete'],
|
|
popConfirm: {
|
|
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
|
confirm: onDelete.bind(null, row),
|
|
},
|
|
},
|
|
]"
|
|
:drop-down-actions="[
|
|
{
|
|
label: '分配角色',
|
|
type: 'text',
|
|
auth: ['system:permission:assign-user-role'],
|
|
onClick: onAssignRole.bind(null, row),
|
|
},
|
|
{
|
|
label: '重置密码',
|
|
type: 'text',
|
|
auth: ['system:user:update-password'],
|
|
onClick: onResetPassword.bind(null, row),
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
</Grid>
|
|
</div>
|
|
</div>
|
|
</Page>
|
|
</template>
|