reactor:【system 系统管理】menu 进一步统一代码风格(暂时只包括 element-plus)

This commit is contained in:
YunaiV
2025-09-08 13:12:57 +08:00
parent 96dadf9971
commit 3564c123a1
4 changed files with 131 additions and 94 deletions

View File

@@ -1,12 +1,11 @@
import type { Recordable } from '@vben/types';
import type { VbenFormSchema } from '#/adapter/form';
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { SystemMenuApi } from '#/api/system/menu';
import { h } from 'vue';
import { useAccess } from '@vben/access';
import {
CommonStatusEnum,
DICT_TYPE,
@@ -21,8 +20,6 @@ import { getMenuList } from '#/api/system/menu';
import { $t } from '#/locales';
import { componentKeys } from '#/router/routes';
const { hasAccessByCodes } = useAccess();
/** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] {
return [
@@ -63,6 +60,7 @@ export function useFormSchema(): VbenFormSchema[] {
},
showSearch: true,
treeDefaultExpandedKeys: [0],
allowClear: true,
},
rules: 'selectRequired',
renderComponentContent() {
@@ -171,6 +169,7 @@ export function useFormSchema(): VbenFormSchema[] {
component: 'AutoComplete',
componentProps: {
clearable: true,
allowClear: true,
filterOption(input: string, option: { value: string }) {
return option.value.toLowerCase().includes(input.toLowerCase());
},
@@ -270,10 +269,9 @@ export function useFormSchema(): VbenFormSchema[] {
}
/** 列表的字段 */
export function useGridColumns(
onActionClick: OnActionClickFn<SystemMenuApi.Menu>,
): VxeTableGridOptions<SystemMenuApi.Menu>['columns'] {
export function useGridColumns(): VxeTableGridOptions<SystemMenuApi.Menu>['columns'] {
return [
{ type: 'checkbox', width: 40 },
{
field: 'name',
title: '菜单名称',
@@ -309,8 +307,8 @@ export function useGridColumns(
},
{
field: 'componentName',
minWidth: 200,
title: '组件名称',
minWidth: 200,
},
{
field: 'status',
@@ -322,34 +320,10 @@ export function useGridColumns(
},
},
{
field: 'operation',
title: '操作',
minWidth: 200,
width: 220,
fixed: 'right',
align: 'center',
showOverflow: false,
cellRender: {
attrs: {
nameField: 'name',
onClick: onActionClick,
},
name: 'CellOperation',
options: [
{
code: 'append',
text: '新增下级',
show: hasAccessByCodes(['system:menu:create']),
},
{
code: 'edit',
show: hasAccessByCodes(['system:menu:update']),
},
{
code: 'delete',
show: hasAccessByCodes(['system:menu:delete']),
},
],
},
slots: { default: 'actions' },
},
];
}