You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
435 B
14 lines
435 B
1 year ago
|
export enum PageEnum {
|
||
|
// basic login path
|
||
|
BASE_LOGIN = '/login',
|
||
|
// 默认/dashboard 在登录时会带上redirect 然后死循环 原因未知 暂时写死地址
|
||
|
BASE_HOME = '/dashboard',
|
||
|
// error page path
|
||
|
ERROR_PAGE = '/exception',
|
||
|
// error log page path
|
||
|
ERROR_LOG_PAGE = '/error-log/list',
|
||
|
//oauth登录
|
||
|
SOCIAL_LOGIN = '/social-callback',
|
||
|
}
|
||
|
export const PageWrapperFixedHeightKey = 'PageWrapperFixedHeight';
|