requestBanner: function() {
var that=this;
dd.showLoading({
content: ‘数据加载中...‘
});
dd.httpRequest({
url: app.data.globalData.url + "public/index.php/api/index/banner",
method: ‘Get‘,
success: function(res) {
dd.hideLoading();
if(res.data.code==200){
}else {
dd.showToast({
content: res.data.msg,
type: ‘fail‘,
});
}
},
fail: function() {
dd.hideLoading();
dd.showToast({
content: ‘数据请求失败‘,
type: ‘fail‘,
});
}
})
}