项目初始化

This commit is contained in:
Taric Xin
2021-11-26 16:34:35 +08:00
parent 66644bcf0a
commit 5287578452
354 changed files with 45736 additions and 0 deletions

34
src/conf/sys.conf.ts Normal file
View 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',
],
};