...
|
...
|
@@ -24,7 +24,7 @@ Page({ |
|
|
})
|
|
|
},
|
|
|
getScreenHeight() {
|
|
|
console.log('获取屏幕', wx.getSystemInfoSync());
|
|
|
// console.log('获取屏幕', wx.getSystemInfoSync());
|
|
|
this.setData({screenHeight:wx.getSystemInfoSync().windowHeight})
|
|
|
},
|
|
|
//获取我的钱包详情
|
...
|
...
|
@@ -35,12 +35,13 @@ Page({ |
|
|
activeId:this.data.id,
|
|
|
};
|
|
|
app.post(url, params, {}).then((res) => {
|
|
|
console.log('获取我的钱包详情', res);
|
|
|
// console.log('获取我的钱包详情', res);
|
|
|
if (+res.code === 1) {
|
|
|
this.setData({
|
|
|
detail: res.data.list,
|
|
|
join:res.data.join,
|
|
|
});
|
|
|
wx.setNavigationBarTitle({title:this.data.detail.type===1?'活动票':'餐票'});
|
|
|
// console.log(self.data.questionList);
|
|
|
}
|
|
|
});
|
...
|
...
|
|