锦水居民端小程序
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.

24 lines
776 B

6 years ago
module.exports = {
BASEURL: BASEURL,
WEBROOT: WEBROOT,
Token: getToken,
userId: ""
};
5 years ago
function BASEURL() {
return 'https://eug-test.elinkit.com.cn/js/epdc-api/api/' // 锦水测试环境
// return 'https://epdc-jinshui.elinkservice.cn/epdc-api/api/' // 锦水正式环境接口地址
// return 'http://10.211.55.2:9094/epdc-api/api/'
6 years ago
}
5 years ago
function WEBROOT() {
return 'https://epdc-shibei.elinkit.com.cn/#/' // 测试环境 h5前端地址
6 years ago
// return 'https://epdc.elinkservice.cn/#/' // 正式环境 h5前端地址
// return 'https://epdc-app.qingdaoshibei.cn/#/' // 电政办 正式环境 前端地址
// return 'https://epdc-shibei.elinkservice.cn/#/' // 电政办 正式环境 前端地址
}
5 years ago
function getToken() {
6 years ago
return wx.getStorageSync("token");
}