179 lines
4.5 KiB
Vue
179 lines
4.5 KiB
Vue
<script lang="ts" setup>
|
|
import type {
|
|
OnActionClickParams,
|
|
VxeTableGridOptions,
|
|
} from '#/adapter/vxe-table';
|
|
import type { SystemRoleApi } from '#/api/system/role';
|
|
|
|
import { Page, useVbenModal } from '@vben/common-ui';
|
|
import { isDocAlertEnable } from '@vben/hooks';
|
|
import { Download, Plus } from '@vben/icons';
|
|
import { downloadFileFromBlobPart } from '@vben/utils';
|
|
|
|
import { Button, message } from 'ant-design-vue';
|
|
|
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import { deleteRole, exportRole, getRolePage } from '#/api/system/role';
|
|
import { DocAlert } from '#/components/doc-alert';
|
|
import { $t } from '#/locales';
|
|
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
import AssignDataPermissionForm from './modules/assign-data-permission-form.vue';
|
|
import AssignMenuForm from './modules/assign-menu-form.vue';
|
|
import Form from './modules/form.vue';
|
|
|
|
const [FormModal, formModalApi] = useVbenModal({
|
|
connectedComponent: Form,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
const [AssignDataPermissionFormModel, assignDataPermissionFormApi] =
|
|
useVbenModal({
|
|
connectedComponent: AssignDataPermissionForm,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
const [AssignMenuFormModel, assignMenuFormApi] = useVbenModal({
|
|
connectedComponent: AssignMenuForm,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
/** 刷新表格 */
|
|
function onRefresh() {
|
|
gridApi.query();
|
|
}
|
|
|
|
/** 导出表格 */
|
|
async function onExport() {
|
|
const data = await exportRole(await gridApi.formApi.getValues());
|
|
downloadFileFromBlobPart({ fileName: '角色.xls', source: data });
|
|
}
|
|
|
|
/** 编辑角色 */
|
|
function onEdit(row: SystemRoleApi.Role) {
|
|
formModalApi.setData(row).open();
|
|
}
|
|
|
|
/** 创建角色 */
|
|
function onCreate() {
|
|
formModalApi.setData(null).open();
|
|
}
|
|
|
|
/** 删除角色 */
|
|
async function onDelete(row: SystemRoleApi.Role) {
|
|
const hideLoading = message.loading({
|
|
content: $t('ui.actionMessage.deleting', [row.name]),
|
|
duration: 0,
|
|
key: 'action_process_msg',
|
|
});
|
|
try {
|
|
await deleteRole(row.id as number);
|
|
message.success({
|
|
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
|
|
key: 'action_process_msg',
|
|
});
|
|
onRefresh();
|
|
} catch {
|
|
hideLoading();
|
|
}
|
|
}
|
|
|
|
/** 分配角色的数据权限 */
|
|
function onAssignDataPermission(row: SystemRoleApi.Role) {
|
|
assignDataPermissionFormApi.setData(row).open();
|
|
}
|
|
|
|
/** 分配角色的菜单权限 */
|
|
function onAssignMenu(row: SystemRoleApi.Role) {
|
|
assignMenuFormApi.setData(row).open();
|
|
}
|
|
|
|
/** 表格操作按钮的回调函数 */
|
|
function onActionClick({ code, row }: OnActionClickParams<SystemRoleApi.Role>) {
|
|
switch (code) {
|
|
case 'assign-data-permission': {
|
|
onAssignDataPermission(row);
|
|
break;
|
|
}
|
|
case 'assign-menu': {
|
|
onAssignMenu(row);
|
|
break;
|
|
}
|
|
case 'delete': {
|
|
onDelete(row);
|
|
break;
|
|
}
|
|
case 'edit': {
|
|
onEdit(row);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
|
formOptions: {
|
|
schema: useGridFormSchema(),
|
|
},
|
|
gridOptions: {
|
|
columns: useGridColumns(onActionClick),
|
|
height: 'auto',
|
|
keepSource: true,
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues) => {
|
|
return await getRolePage({
|
|
page: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
},
|
|
toolbarConfig: {
|
|
refresh: { code: 'query' },
|
|
search: true,
|
|
},
|
|
} as VxeTableGridOptions<SystemRoleApi.Role>,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height>
|
|
<template #description v-if="isDocAlertEnable()">
|
|
<DocAlert
|
|
title="功能权限"
|
|
url="https://doc.iocoder.cn/resource-permission"
|
|
/>
|
|
<DocAlert title="数据权限" url="https://doc.iocoder.cn/data-permission" />
|
|
</template>
|
|
|
|
<FormModal @success="onRefresh" />
|
|
<AssignDataPermissionFormModel @success="onRefresh" />
|
|
<AssignMenuFormModel @success="onRefresh" />
|
|
<Grid table-title="角色列表">
|
|
<template #toolbar-tools>
|
|
<Button
|
|
type="primary"
|
|
@click="onCreate"
|
|
v-access:code="['system:role:create']"
|
|
>
|
|
<Plus class="size-5" />
|
|
{{ $t('ui.actionTitle.create', ['角色']) }}
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
class="ml-2"
|
|
@click="onExport"
|
|
v-access:code="['system:role:export']"
|
|
>
|
|
<Download class="size-5" />
|
|
{{ $t('ui.actionTitle.export') }}
|
|
</Button>
|
|
</template>
|
|
</Grid>
|
|
</Page>
|
|
</template>
|