@@ -20,6 +20,7 @@ App({
"fclienttype": "MOBILE"
}
}).then(res => {
+ console.log(res)
that.globalData.bannerDataList = res.data;
})
@@ -155,7 +155,8 @@ Page({
let requestList = that.data.requestList;
requestList.splice(i, 1);
that.setData({
- requestList
+ requestList,
+ showBtn: -1
} else {
@@ -44,6 +44,9 @@ Page({
/* 跳转商户 */
jumpForDetails() {
const data = this.data.cooperationList[this.data.showIndex];
+ this.setData({
+ showIndex: -1
+ })
wx.navigateTo({
url: '/pages/businessPartner/details?data=' + JSON.stringify(data),