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.
15 lines
430 B
15 lines
430 B
module.exports = {
|
|
BASEURL: BASEURL,
|
|
Token: getToken,
|
|
userId: ''
|
|
};
|
|
function BASEURL() {
|
|
// return 'https://epmet-test.elinkservice.cn/api/' // 测试环境
|
|
return 'http://192.168.1.140/api/'; //开发环境
|
|
// return 'https://epmet-preview.elinkservice.cn/api/' // 生产环境
|
|
//return http://219.146.91.110:30801/api //开发外网
|
|
}
|
|
|
|
function getToken() {
|
|
return uni.getStorageSync('token');
|
|
}
|
|
|