Files
bbq/src/conf/sys.conf.ts
Taric Xin ae2bde8d33 edit
2022-01-04 18:00:50 +08:00

43 lines
701 B
TypeScript

/* eslint-disable @typescript-eslint/naming-convention */
/**
* 系统关键配置
*/
export const sysConf = {
/**
* 应用ID
*/
appId: `5800BF51DC9A494489700F09E3B81520`,
/**
* 租户ID
*/
tenantId: `1`,
/**
* 企业ID
*/
enterpriseId: `0`,
/**
* 登录路径
*/
login_url: `/passport/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'
]
};