reactor:【system 系统管理】menu 进一步统一代码风格

This commit is contained in:
YunaiV
2025-09-08 22:53:18 +08:00
parent 3564c123a1
commit 2becb1b09d
6 changed files with 33 additions and 70 deletions

View File

@@ -45,7 +45,6 @@ export function useFormSchema(): VbenFormSchema[] {
} as SystemMenuApi.Menu);
return handleTree(data);
},
checkStrictly: true,
labelField: 'name',
valueField: 'id',
childrenField: 'children',
@@ -271,7 +270,6 @@ export function useFormSchema(): VbenFormSchema[] {
/** 列表的字段 */
export function useGridColumns(): VxeTableGridOptions<SystemMenuApi.Menu>['columns'] {
return [
{ type: 'checkbox', width: 40 },
{
field: 'name',
title: '菜单名称',

View File

@@ -4,15 +4,14 @@ import type { SystemMenuApi } from '#/api/system/menu';
import { ref } from 'vue';
import { confirm, DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { SystemMenuTypeEnum } from '@vben/constants';
import { IconifyIcon } from '@vben/icons';
import { isEmpty } from '@vben/utils';
import { ElLoading, ElMessage } from 'element-plus';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import { deleteMenu, deleteMenuList, getMenuList } from '#/api/system/menu';
import { deleteMenu, getMenuList } from '#/api/system/menu';
import { $t } from '#/locales';
import { useGridColumns } from './data';
@@ -30,7 +29,7 @@ function handleRefresh() {
/** 创建菜单 */
function handleCreate() {
formModalApi.setData(null).open();
formModalApi.setData({}).open();
}
/** 添加下级菜单 */
@@ -57,31 +56,6 @@ async function handleDelete(row: SystemMenuApi.Menu) {
}
}
/** 批量删除菜单 */
async function handleDeleteBatch() {
await confirm($t('ui.actionMessage.deleteBatchConfirm'));
const loadingInstance = ElLoading.service({
text: $t('ui.actionMessage.deletingBatch'),
});
try {
await deleteMenuList(checkedIds.value);
checkedIds.value = [];
ElMessage.success($t('ui.actionMessage.deleteSuccess'));
handleRefresh();
} finally {
loadingInstance.close();
}
}
const checkedIds = ref<number[]>([]);
function handleRowCheckboxChange({
records,
}: {
records: SystemMenuApi.Menu[];
}) {
checkedIds.value = records.map((item) => item.id!);
}
/** 切换树形展开/收缩状态 */
const isExpanded = ref(false);
function handleExpand() {
@@ -110,7 +84,6 @@ const [Grid, gridApi] = useVbenVxeGrid({
},
toolbarConfig: {
refresh: true,
search: true,
},
treeConfig: {
parentField: 'parentId',
@@ -119,10 +92,6 @@ const [Grid, gridApi] = useVbenVxeGrid({
reserve: true,
},
} as VxeTableGridOptions<SystemMenuApi.Menu>,
gridEvents: {
checkboxAll: handleRowCheckboxChange,
checkboxChange: handleRowCheckboxChange,
},
});
</script>
@@ -153,14 +122,6 @@ const [Grid, gridApi] = useVbenVxeGrid({
type: 'primary',
onClick: handleExpand,
},
{
label: $t('ui.actionTitle.deleteBatch'),
type: 'danger',
icon: ACTION_ICON.DELETE,
auth: ['system:menu:delete'],
disabled: isEmpty(checkedIds),
onClick: handleDeleteBatch,
},
]"
/>
</template>