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.
|
|
|
/*
|
|
|
|
* @Author: mk 2403457699@qq.com
|
|
|
|
* @Date: 2024-08-29 13:47:57
|
|
|
|
* @LastEditors: mk 2403457699@qq.com
|
|
|
|
* @LastEditTime: 2024-09-27 19:25:28
|
|
|
|
* @FilePath: \epmet-voluntary-mp\utils\config.js
|
|
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
BASEURL: BASEURL,
|
|
|
|
Token: getToken,
|
|
|
|
userId: ""
|
|
|
|
};
|
|
|
|
|
|
|
|
function BASEURL() {
|
|
|
|
return 'https://zsbz.qdcfy.com/mz-api'
|
|
|
|
// return 'http://219.146.91.110:30801/mz-api'
|
|
|
|
// return 'https://epmet-test.elinkservice.cn/api/'
|
|
|
|
}
|
|
|
|
|
|
|
|
function getToken() {
|
|
|
|
return wx.getStorageSync("token");
|
|
|
|
}
|
|
|
|
|