// const baseUrl = 'https://jlxwjr.jljrkg.com'; const imageUrl = 'https://jlxwjr.jljrkg.com'; // const baseUrl = 'http://127.0.0.1:7004'; const baseUrl = 'https://ccss.windd.cn'; module.exports = { imageUrl, query({url, data, method = 'GET'}) { return new Promise((resolve, reject) => { wx.request({ url: `${baseUrl}/${url}`, data: data, method: method, timeout: 5000, header: {'content-type': 'application/json'}, dataType: 'json', success: resolve, fail: reject, }); }); }, fetch({url, id}) { return new Promise((resolve, reject) => { wx.request({ url: `${baseUrl}/${url}/${id}`, method: 'GET', header: {'content-type': 'application/json'}, dataType: 'json', success: resolve, fail: reject, }); }); }, }