You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
838 B
34 lines
838 B
//api接口环境配置
|
|
// production正式/development线上测试/local本地开发
|
|
var NowENV = 'production';
|
|
var ENV_API_URL = {
|
|
production:'https://takephoto.tsl3060.com/', //正式环境
|
|
development:'http://photo.internal.com/', //开发测试环境
|
|
local:'https://photo.internal.com/',//本地调试环境
|
|
|
|
}
|
|
//CdnUrl 环境配置[都默认为线上都行]
|
|
var ENV_BASE_URL = {
|
|
production:'https://takephoto.tsl3060.com', //正式环境
|
|
development:'http://photo.internal.com', //开发测试环境
|
|
local:'https://photo.internal.com',//本地调试环境
|
|
}
|
|
|
|
|
|
|
|
var ENV = {
|
|
EnvShow:NowENV,//当前环境
|
|
ApiUrl:ENV_API_URL[NowENV], //正式
|
|
CdnUrl:ENV_BASE_URL[NowENV], //正式
|
|
|
|
appData:function() {
|
|
var data = {}; //版本号
|
|
data.i_app_version = '1.0.0';
|
|
return data;
|
|
},
|
|
QQmapkey:'',
|
|
|
|
|
|
}
|
|
|
|
module.exports = ENV |