第一基础版

This commit is contained in:
2025-06-08 20:16:51 +08:00
commit 08e79c60e7
1469 changed files with 127477 additions and 0 deletions

View File

@@ -0,0 +1,132 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
import type { SystemUserApi } from '#/api';
import { ref } from 'vue';
import { $t } from '#/locales';
// 角色列表引用,可以在加载后更新
export const roleOptions = ref<{ label: string; value: number | string }[]>([]);
export function useFormSchema(): VbenFormSchema[] {
return [
{
component: 'Input',
fieldName: 'username',
label: $t('system.user.userName'),
rules: 'required',
},
{
component: 'Input',
fieldName: 'real_name',
label: $t('system.user.realName'),
rules: 'required',
},
{
component: 'RadioGroup',
componentProps: {
buttonStyle: 'solid',
options: [
{ label: $t('common.enabled'), value: 1 },
{ label: $t('common.disabled'), value: 0 },
],
optionType: 'button',
},
defaultValue: 1,
fieldName: 'status',
label: $t('system.user.status'),
},
{
component: 'Select',
componentProps: {
mode: 'multiple',
allowClear: true,
options: roleOptions,
class: 'w-full',
},
fieldName: 'role_ids',
formItemClass: 'items-start',
label: $t('system.user.setPermissions'),
},
];
}
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
component: 'Input',
fieldName: 'username',
label: $t('system.user.userName'),
},
{
component: 'Input',
fieldName: 'real_name',
label: $t('system.user.realName'),
},
{
component: 'Select',
componentProps: {
allowClear: true,
options: [
{ label: $t('common.enabled'), value: 1 },
{ label: $t('common.disabled'), value: 0 },
],
},
fieldName: 'status',
label: $t('system.user.status'),
},
{
component: 'RangePicker',
fieldName: 'create_time',
label: $t('system.user.createTime'),
},
];
}
export function useColumns<T = SystemUserApi.SystemUser>(
onActionClick: OnActionClickFn<T>,
onStatusChange?: (newStatus: any, row: T) => PromiseLike<boolean | undefined>,
): VxeTableGridOptions['columns'] {
return [
{
field: 'username',
title: $t('system.user.userName'),
minWidth: 200,
},
{
field: 'real_name',
title: $t('system.user.realName'),
minWidth: 200,
},
{
cellRender: {
attrs: { beforeChange: onStatusChange },
name: onStatusChange ? 'CellSwitch' : 'CellTag',
},
field: 'status',
title: $t('system.user.status'),
minWidth: 100,
},
{
field: 'create_time',
title: $t('system.user.createTime'),
minWidth: 200,
},
{
align: 'center',
cellRender: {
attrs: {
nameField: 'username',
nameTitle: $t('system.user.userName'),
onClick: onActionClick,
},
name: 'CellOperation',
},
field: 'operation',
fixed: 'right',
title: $t('system.user.operation'),
width: 130,
},
];
}