This commit is contained in:
zhuoda
2024-01-08 19:52:39 +08:00
parent 8dc663d885
commit 192e959d14
1126 changed files with 13783 additions and 68273 deletions

View File

@@ -10,7 +10,7 @@
export const PAGE_SIZE = 10;
export const PAGE_SIZE_OPTIONS = ['10', '15', '20', '30', '40', '50', '75', '100', '150', '200', '300', '500'];
export const PAGE_SIZE_OPTIONS = ['5', '10', '15', '20', '30', '40', '50', '75', '100', '150', '200', '300', '500'];
//登录页面名字
export const PAGE_PATH_LOGIN = '/login';
@@ -56,3 +56,15 @@ export const USER_TYPE_ENUM = {
};
export const DATA_TYPE_ENUM = {
NORMAL: {
value: 1,
desc: '普通',
},
ENCRYPT: {
value: 10,
desc: '加密',
},
};

View File

@@ -8,12 +8,16 @@
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
export const LAYOUT_ENUM = {
SIDE_EXPAND: {
value: 'side-expand',
desc: '展开菜单',
},
SIDE: {
value: 'side',
desc: '传统菜单',
desc: '传统',
},
SIDE_EXPAND: {
value: 'side-expand',
desc: '展开',
},
TOP: {
value: 'top',
desc: '顶部',
},
};

View File

@@ -26,14 +26,10 @@ export const MENU_TYPE_ENUM = {
* 权限类型
*/
export const MENU_PERMS_TYPE_ENUM = {
SPRING_SECURITY: {
SA_TOKEN: {
value: 1,
desc: 'Security模式',
},
URL: {
value: 2,
desc: 'URL模式',
},
desc: 'Sa-Token模式',
}
};
/**