幻灯片/轮播图
查询tid为1,前台显示的轮播图
// 微信API请求
// key为api访问密钥
wx.request({
url:util.config.appApiUrl+'/GetData/index',
data:{ key:key model:"collect",tid:1,isshow:1},
method:'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
dataType:'json',
success:function(res){
console.log(res);
}
});