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.
41 lines
1.3 KiB
41 lines
1.3 KiB
5 years ago
|
module.exports = {
|
||
|
BASEURL: BASEURL,
|
||
|
WEBROOT: WEBROOT,
|
||
|
CLERKONLINE:CLERKONLINE,
|
||
|
Token: getToken(),
|
||
|
userId: ""
|
||
|
};
|
||
|
|
||
|
function BASEURL() {
|
||
|
return "https://epdc-yushan.elinkservice.cn/epdc-api/api/"
|
||
|
// return "https://epdc-shibei.elinkservice.cn/epdc-api/api/"; //市北党群e家正式版
|
||
|
// return "http://219.146.91.110:10000/epdc-api/api/" //测试地址
|
||
|
|
||
|
// return "http://219.146.91.110:9094/epdc-api/api/";
|
||
|
// return "https://epdc-shibei.elinkservice.cn/epdc-api/api/"
|
||
|
// return "http://219.146.91.110:9094/epdc-api/api/" //12.12修改
|
||
|
// return "http://10.10.10.195:9094/epdc-api/api/"
|
||
|
|
||
|
|
||
|
// return "http://localhost:9094/epdc-api/api/"
|
||
|
// return "https://epdc-api.elinkchina.com.cn/epdc-api/api/"
|
||
|
// return "https://epdc.elinkservice.cn/epdc-api/api/"
|
||
|
// return "https://nei.netease.com/api/apimock/4e0055604f761bbb61666ac42d1b5e82/api/"
|
||
|
}
|
||
|
|
||
|
function CLERKONLINE() {
|
||
|
// return 'http://219.146.91.110:10000/epdc-api/' //测试环境接口
|
||
|
// return 'https://eug-test.elinkit.com.cn/epdc-api/' // 测试环境接口s
|
||
|
// return 'https://epdc-shibei.elinkservice.cn/epdc-api/' //市北党群e家正式环境
|
||
|
return "https://epdc-yushan.elinkservice.cn/epdc-api/api/"
|
||
|
}
|
||
|
|
||
|
function WEBROOT() {
|
||
|
return "https://epdc.elinkservice.cn/#/";
|
||
|
// return "http://localhost:8080/#/"
|
||
|
}
|
||
|
|
||
|
function getToken() {
|
||
|
return wx.getStorageSync("token");
|
||
|
}
|