191 lines
5.2 KiB
Vue
191 lines
5.2 KiB
Vue
<script lang="ts" setup>
|
||
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
||
import type { SystemRoleApi } from '#/api/system/role';
|
||
|
||
import { Page, useVbenModal } from '@vben/common-ui';
|
||
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 { TableAction } from '#/components/table-action';
|
||
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);
|
||
// TODO @xingyu:是不是统一 finally hideLoading 比较好?
|
||
hideLoading();
|
||
message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
|
||
onRefresh();
|
||
} catch {
|
||
hideLoading();
|
||
}
|
||
}
|
||
|
||
/** 分配角色的数据权限 */
|
||
function onAssignDataPermission(row: SystemRoleApi.Role) {
|
||
assignDataPermissionFormApi.setData(row).open();
|
||
}
|
||
|
||
/** 分配角色的菜单权限 */
|
||
function onAssignMenu(row: SystemRoleApi.Role) {
|
||
assignMenuFormApi.setData(row).open();
|
||
}
|
||
|
||
const [Grid, gridApi] = useVbenVxeGrid({
|
||
formOptions: {
|
||
schema: useGridFormSchema(),
|
||
},
|
||
gridOptions: {
|
||
columns: useGridColumns(),
|
||
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 #doc>
|
||
<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>
|
||
<template #actions="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
label: $t('common.edit'),
|
||
type: 'link',
|
||
icon: 'ant-design:edit-outlined',
|
||
auth: ['system:role:update'],
|
||
onClick: onEdit.bind(null, row),
|
||
},
|
||
{
|
||
label: $t('common.delete'),
|
||
type: 'link',
|
||
danger: true,
|
||
icon: 'ant-design:delete-outlined',
|
||
auth: ['system:role:delete'],
|
||
popConfirm: {
|
||
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
||
confirm: onDelete.bind(null, row),
|
||
},
|
||
},
|
||
]"
|
||
:drop-down-actions="[
|
||
{
|
||
label: '数据权限',
|
||
type: 'link',
|
||
auth: ['system:permission:assign-role-data-scope'],
|
||
onClick: onAssignDataPermission.bind(null, row),
|
||
},
|
||
{
|
||
label: '菜单权限',
|
||
type: 'link',
|
||
auth: ['system:permission:assign-role-menu'],
|
||
onClick: onAssignMenu.bind(null, row),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
</Grid>
|
||
</Page>
|
||
</template>
|