源文件

This commit is contained in:
gyq
2024-05-23 14:39:33 +08:00
commit a1128dd791
2997 changed files with 500069 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/**
* app 通用设置项目
*
* @author terrfly
* @site https://www.jeequan.com
* @date 2022/04/13 15:18
*/
const appConfig = {
// 项目名称
// appName: '收银呗展业宝',
appName: '服务商',
// token取值key
tokenKey: 'iToken',
tokenVal: '', //token取值vue线程内的缓存不必要每次读取应用数据影响性能
// 环境变量相关
env: {},
// 环境变量常量
ENV_ENUM: {
DEVELOPMENT: 'development', //开发地址
TEST: 'test', // 测试地址
DEMO: 'demo', // 演示环境
PRODUCTION: 'production', // 生产环境
PRODUCTION2: 'production2' // 生产环境2
},
encryptKey: '1234567890123456' //http数据加解密的key
}
export default appConfig;