diff --git a/apps/web-antd/src/views/system/role/data.ts b/apps/web-antd/src/views/system/role/data.ts
index 6029ac2fd..bb30d37f3 100644
--- a/apps/web-antd/src/views/system/role/data.ts
+++ b/apps/web-antd/src/views/system/role/data.ts
@@ -1,12 +1,14 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
-import { CommonStatusEnum, SystemDataScopeEnum } from '@vben/constants';
-
-import { z } from '#/adapter/form';
-import { DICT_TYPE } from '@vben/constants';
+import {
+ CommonStatusEnum,
+ DICT_TYPE,
+ SystemDataScopeEnum,
+} from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
+import { z } from '#/adapter/form';
import { getRangePickerDefaultProps } from '#/utils';
/** 新增/修改的表单 */
@@ -155,19 +157,28 @@ export function useGridFormSchema(): VbenFormSchema[] {
fieldName: 'name',
label: '角色名称',
component: 'Input',
+ componentProps: {
+ placeholder: '请输入角色名称',
+ allowClear: true,
+ },
},
{
fieldName: 'code',
label: '角色标识',
component: 'Input',
+ componentProps: {
+ placeholder: '请输入角色标识',
+ allowClear: true,
+ },
},
{
fieldName: 'status',
label: '角色状态',
component: 'Select',
componentProps: {
- allowClear: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
+ placeholder: '请选择角色状态',
+ allowClear: true,
},
},
{
@@ -189,14 +200,17 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'id',
title: '角色编号',
+ minWidth: 100,
},
{
field: 'name',
title: '角色名称',
+ minWidth: 200,
},
{
field: 'type',
title: '角色类型',
+ minWidth: 100,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.SYSTEM_ROLE_TYPE },
@@ -205,18 +219,22 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'code',
title: '角色标识',
+ minWidth: 200,
},
{
field: 'sort',
title: '显示顺序',
+ minWidth: 100,
},
{
field: 'remark',
title: '角色备注',
+ minWidth: 100,
},
{
field: 'status',
title: '角色状态',
+ minWidth: 100,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.COMMON_STATUS },
@@ -225,6 +243,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'createTime',
title: '创建时间',
+ minWidth: 180,
formatter: 'formatDateTime',
},
{
diff --git a/apps/web-antd/src/views/system/role/index.vue b/apps/web-antd/src/views/system/role/index.vue
index a953945f3..07e14b830 100644
--- a/apps/web-antd/src/views/system/role/index.vue
+++ b/apps/web-antd/src/views/system/role/index.vue
@@ -4,7 +4,7 @@ import type { SystemRoleApi } from '#/api/system/role';
import { ref } from 'vue';
-import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
+import { confirm, DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { downloadFileFromBlobPart, isEmpty } from '@vben/utils';
import { message } from 'ant-design-vue';
@@ -40,7 +40,7 @@ const [AssignMenuFormModel, assignMenuFormApi] = useVbenModal({
});
/** 刷新表格 */
-function onRefresh() {
+function handleRefresh() {
gridApi.query();
}
@@ -50,29 +50,43 @@ async function handleExport() {
downloadFileFromBlobPart({ fileName: '角色.xls', source: data });
}
-/** 编辑角色 */
-function handleEdit(row: SystemRoleApi.Role) {
- formModalApi.setData(row).open();
-}
-
/** 创建角色 */
function handleCreate() {
formModalApi.setData(null).open();
}
+/** 编辑角色 */
+function handleEdit(row: SystemRoleApi.Role) {
+ formModalApi.setData(row).open();
+}
+
/** 删除角色 */
async function handleDelete(row: SystemRoleApi.Role) {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.name]),
- key: 'action_key_msg',
+ duration: 0,
});
try {
await deleteRole(row.id as number);
- message.success({
- content: $t('ui.actionMessage.deleteSuccess', [row.name]),
- key: 'action_key_msg',
- });
- onRefresh();
+ message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
+ handleRefresh();
+ } finally {
+ hideLoading();
+ }
+}
+
+/** 批量删除角色 */
+async function handleDeleteBatch() {
+ await confirm($t('ui.actionMessage.deleteBatchConfirm'));
+ const hideLoading = message.loading({
+ content: $t('ui.actionMessage.deletingBatch'),
+ duration: 0,
+ });
+ try {
+ await deleteRoleList(checkedIds.value);
+ checkedIds.value = [];
+ message.success($t('ui.actionMessage.deleteSuccess'));
+ handleRefresh();
} finally {
hideLoading();
}
@@ -87,23 +101,6 @@ function handleRowCheckboxChange({
checkedIds.value = records.map((item) => item.id!);
}
-/** 批量删除角色 */
-async function handleDeleteBatch() {
- const hideLoading = message.loading({
- content: $t('ui.actionMessage.deleting'),
- duration: 0,
- key: 'action_process_msg',
- });
- try {
- await deleteRoleList(checkedIds.value);
- checkedIds.value = [];
- message.success($t('ui.actionMessage.deleteSuccess'));
- onRefresh();
- } finally {
- hideLoading();
- }
-}
-
/** 分配角色的数据权限 */
function handleAssignDataPermission(row: SystemRoleApi.Role) {
assignDataPermissionFormApi.setData(row).open();
@@ -159,9 +156,9 @@ const [Grid, gridApi] = useVbenVxeGrid({
-
-
-
+
+
+
-
+
全选
-
+
全部展开
-
+
父子联动
diff --git a/apps/web-antd/src/views/system/role/modules/assign-menu-form.vue b/apps/web-antd/src/views/system/role/modules/assign-menu-form.vue
index 19de580a8..41597ce72 100644
--- a/apps/web-antd/src/views/system/role/modules/assign-menu-form.vue
+++ b/apps/web-antd/src/views/system/role/modules/assign-menu-form.vue
@@ -4,7 +4,7 @@ import type { Recordable } from '@vben/types';
import type { SystemMenuApi } from '#/api/system/menu';
import type { SystemRoleApi } from '#/api/system/role';
-import { ref } from 'vue';
+import {nextTick, ref} from 'vue';
import { useVbenModal, VbenTree } from '@vben/common-ui';
import { SystemMenuTypeEnum } from '@vben/constants';
@@ -80,6 +80,7 @@ const [Modal, modalApi] = useVbenModal({
await formApi.setValues(data);
} finally {
+ await nextTick(); // 菜单过多,渲染较慢,需要等下一次事件循环
modalApi.unlock();
}
},
@@ -97,7 +98,7 @@ async function loadMenuTree() {
}
/** 全选/全不选 */
-function toggleSelectAll() {
+function handleSelectAll() {
isAllSelected.value = !isAllSelected.value;
if (isAllSelected.value) {
const allIds = getAllNodeIds(menuTree.value);
@@ -108,9 +109,8 @@ function toggleSelectAll() {
}
/** 展开/折叠所有节点 */
-function toggleExpandAll() {
+function handleExpandAll() {
isExpanded.value = !isExpanded.value;
- // 获取所有节点的 ID
expandedKeys.value = isExpanded.value ? getAllNodeIds(menuTree.value) : [];
}
@@ -158,10 +158,10 @@ function getNodeClass(node: Recordable) {
-
+
全选
-
+
全部展开
diff --git a/apps/web-ele/src/views/system/role/data.ts b/apps/web-ele/src/views/system/role/data.ts
index 6c5e4b55d..cef1fd4e1 100644
--- a/apps/web-ele/src/views/system/role/data.ts
+++ b/apps/web-ele/src/views/system/role/data.ts
@@ -1,8 +1,6 @@
import type { VbenFormSchema } from '#/adapter/form';
-import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
-import type { SystemRoleApi } from '#/api/system/role';
+import type { VxeTableGridOptions } from '#/adapter/vxe-table';
-import { useAccess } from '@vben/access';
import {
CommonStatusEnum,
DICT_TYPE,
@@ -13,8 +11,6 @@ import { getDictOptions } from '@vben/hooks';
import { z } from '#/adapter/form';
import { getRangePickerDefaultProps } from '#/utils';
-const { hasAccessByCodes } = useAccess();
-
/** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] {
return [
@@ -161,19 +157,28 @@ export function useGridFormSchema(): VbenFormSchema[] {
fieldName: 'name',
label: '角色名称',
component: 'Input',
+ componentProps: {
+ placeholder: '请输入角色名称',
+ clearable: true,
+ },
},
{
fieldName: 'code',
label: '角色标识',
component: 'Input',
+ componentProps: {
+ placeholder: '请输入角色标识',
+ clearable: true,
+ },
},
{
fieldName: 'status',
label: '角色状态',
component: 'Select',
componentProps: {
- clearable: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
+ placeholder: '请选择角色状态',
+ clearable: true,
},
},
{
@@ -189,18 +194,13 @@ export function useGridFormSchema(): VbenFormSchema[] {
}
/** 列表的字段 */
-export function useGridColumns(
- onActionClick: OnActionClickFn,
-): VxeTableGridOptions['columns'] {
+export function useGridColumns(): VxeTableGridOptions['columns'] {
return [
- {
- type: 'checkbox',
- width: 40,
- },
+ { type: 'checkbox', width: 40 },
{
field: 'id',
title: '角色编号',
- minWidth: 200,
+ minWidth: 100,
},
{
field: 'name',
@@ -247,41 +247,10 @@ export function useGridColumns(
formatter: 'formatDateTime',
},
{
- field: 'operation',
title: '操作',
width: 240,
fixed: 'right',
- align: 'center',
- cellRender: {
- attrs: {
- nameField: 'name',
- nameTitle: '角色',
- onClick: onActionClick,
- },
- name: 'CellOperation',
- options: [
- {
- code: 'edit',
- show: hasAccessByCodes(['system:role:update']),
- },
- {
- code: 'delete',
- show: hasAccessByCodes(['system:role:delete']),
- },
- {
- code: 'assign-data-permission',
- text: '数据权限',
- show: hasAccessByCodes([
- 'system:permission:assign-role-data-scope',
- ]),
- },
- {
- code: 'assign-menu',
- text: '菜单权限',
- show: hasAccessByCodes(['system:permission:assign-role-menu']),
- },
- ],
- },
+ slots: { default: 'actions' },
},
];
}
diff --git a/apps/web-ele/src/views/system/role/index.vue b/apps/web-ele/src/views/system/role/index.vue
index 98f238b05..a30a6d712 100644
--- a/apps/web-ele/src/views/system/role/index.vue
+++ b/apps/web-ele/src/views/system/role/index.vue
@@ -1,19 +1,15 @@
-
+
-
+
全选
-
+
全部展开
父子联动
diff --git a/apps/web-ele/src/views/system/role/modules/assign-menu-form.vue b/apps/web-ele/src/views/system/role/modules/assign-menu-form.vue
index a94e4a301..ae60631ab 100644
--- a/apps/web-ele/src/views/system/role/modules/assign-menu-form.vue
+++ b/apps/web-ele/src/views/system/role/modules/assign-menu-form.vue
@@ -1,10 +1,13 @@
-
+
-
+
全选
-
+
全部展开