encapsulation.js
501 Bytes
// const host = 'http://8.130.163.46:8091/'; //这个是你们的接口域名
// const api = {
// getClickNum: host + 'api/ReservationSettings/SettingReservation' //接口进行拼接
// }
// module.exports = api;//导出方式
// fetch(url, data, callback) {
// uni.request({
// url,
// data,
// header: {//地址返回的结果
// 'Content-Type': 'application/json'
// },
// success(res) {
// callback(null, res.data);
// },
// fail(e) {
// callback(e);
// }
// })
// },