const BASE_URL = 'http://localhost:7031' export const http = (options) => { return new Promise((resolve, reject) => { uni.request({ url: BASE_URL + options.url, method: options.method || 'GET', data: options.data || {}, success: (res) => { if (res.data.status !== 0) { return uni.showToast({ title: '数据获取失败!' }) } resolve(res) }, fail: (err) => { uni.showToast({ title: "请求失败", icon: 'error' }) reject(err) } }) }) }