Files
ClassContent/历届学生/韩想/项目开发/课程项目/美食/js/utils/ajax.js
2024-09-27 02:06:13 +08:00

34 lines
937 B
JavaScript

function http(option) {
var toast = new auiToast();
toast.loading({
title: '加载中...'
});
return new Promise(function(resolve,reject) {
$.ajax({
type: option.type,
url: `${Config.BaseUrl}${option.url}`,
data: option.data,
success: function(res) {
if (res.status == 200) {
toast.hide();
resolve(res.result)
} else {
toast.hide();
toast.fail({
title: res.message,
duration:2000
});
}
},
error: function(err) {
toast.hide();
toast.fail({
title: '网络有问题',
duration:2000
});
reject(err);
},
})
});
}