feat(系统设置): 用户组静态页面

This commit is contained in:
RubyLiu 2023-06-12 15:31:28 +08:00 committed by 刘瑞斌
parent 965364c2fc
commit 9cf5df3635
3 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,5 @@
export interface UserGroupListItem {
name: string;
id: number;
title?: string;
}

View File

@ -0,0 +1,14 @@
export default {
system: {
userGroup: {
searchHolder: 'Please input user group name',
inSystem: 'In system',
customUserGroup: 'Custom user group',
addSystemUserGroup: 'Add system user group',
addSystemUser: 'Add system user',
addUser: 'Add user',
emptyUserGroup:
'There are currently no custom user groups available. Please click "Create" or "+" above to create a user group',
},
},
};

View File

@ -0,0 +1,13 @@
export default {
system: {
userGroup: {
searchHolder: '请输入用户组名称',
inSystem: '系统内置',
customUserGroup: '自定义用户组',
addSystemUserGroup: '添加系统用户组',
addSystemUser: '添加系统用户',
addUser: '添加成员',
emptyUserGroup: '暂无自定义用户组,请点击上方创建或 “+” 创建用户组',
},
},
};