new-cashier/jeepay-ui-uapp-agent/config/appConfig.js

34 lines
727 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 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;