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

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