epmet 工作端 小程序
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.

22 lines
599 B

2 years ago
module.exports = {
BASEURL: BASEURL,
Token: getToken,
userId: ""
};
function BASEURL() {
// return 'https://epmet-preview.elinkservice.cn/api/' // 演示环境
return 'http://192.168.1.144/api/' //测试环境
// return 'http://219.146.91.110:30801/api/'
2 years ago
// return 'https://epmet-preview.elinkservice.cn/api/' // 演示环境
// return 'http://192.168.1.144/api/' //测试环境
1 year ago
// return 'http://219.146.91.110:30801/api/'
1 year ago
//return http://219.146.91.110:30801/api //外网
2 years ago
}
function getToken() {
return wx.getStorageSync("token");
}