35 lines
579 B
TypeScript
35 lines
579 B
TypeScript
/* 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',
|
|
],
|
|
};
|