项目初始化
This commit is contained in:
34
src/conf/sys.conf.ts
Normal file
34
src/conf/sys.conf.ts
Normal file
@ -0,0 +1,34 @@
|
||||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
|
||||
/**
|
||||
* 系统关键配置
|
||||
*/
|
||||
export const sysConf = {
|
||||
/**
|
||||
* 应用ID
|
||||
*/
|
||||
appId: ``,
|
||||
/**
|
||||
* 登录路径
|
||||
*/
|
||||
login_url: `/account/login`,
|
||||
/**
|
||||
* 缓存过期时间
|
||||
*/
|
||||
cache_expiration_time: 60 * 60 * 24 * 2,
|
||||
/**
|
||||
* 加密键名
|
||||
*/
|
||||
encrypt_key: `LKJDSKFHFKJKFDS`,
|
||||
/**
|
||||
* 显示Tabs工具栏
|
||||
*/
|
||||
show_tabs_path: [
|
||||
'/tabs/home/index',
|
||||
'/tabs/service/index',
|
||||
'/tabs/industry/index',
|
||||
'/tabs/partner/index',
|
||||
'/tabs/community/index',
|
||||
'/tabs/my/index',
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user