...
|
...
|
@@ -249,7 +249,8 @@ Page({ |
|
|
count: res.data.count, // 留言板
|
|
|
is_send:res.data.is_send,//能否参加1:不能2:能
|
|
|
});
|
|
|
self.getCode();//获取二维码(此二维码不能进入活动详情,已改为小程序码)
|
|
|
// self.getCode();//获取二维码(此二维码不能进入活动详情,已改为小程序码)
|
|
|
self.getLocalImage()
|
|
|
// (0全部,2待拼成,3人数不足未拼成,4已拼成,5已取消,6已完成,7已评价,8已拼成(活动未结束),9删除
|
|
|
const status = res.data.active.status;
|
|
|
if (status === 2 || status === 6 || status === 7 || status === 8) {
|
...
|
...
|
@@ -387,34 +388,34 @@ Page({ |
|
|
// }
|
|
|
},
|
|
|
//获取活动二维码
|
|
|
getCode() {
|
|
|
const self = this;
|
|
|
let url = '/portal/Index/qrCode';
|
|
|
let params = {
|
|
|
id: self.data.detail_id,
|
|
|
token:wx.getStorageSync('token'),
|
|
|
type:2,//1拼活动,2拼餐
|
|
|
};
|
|
|
app.post(url, params, {}).then((res) => {
|
|
|
// console.log('获取活动二维码', res);
|
|
|
if (+res.code === 1) {
|
|
|
self.setData({qr_code:res.data},() => {
|
|
|
// getCode() {
|
|
|
// const self = this;
|
|
|
// let url = '/portal/Index/qrCode';
|
|
|
// let params = {
|
|
|
// id: self.data.detail_id,
|
|
|
// token:wx.getStorageSync('token'),
|
|
|
// type:2,//1拼活动,2拼餐
|
|
|
// };
|
|
|
// app.post(url, params, {}).then((res) => {
|
|
|
// // console.log('获取活动二维码', res);
|
|
|
// if (+res.code === 1) {
|
|
|
// self.setData({qr_code:res.data},() => {
|
|
|
// console.log('二维码',self.data.qr_code);
|
|
|
wx.getImageInfo({
|
|
|
src: 'http://' + self.data.qr_code,
|
|
|
success(res) {
|
|
|
// console.log('二维码本地路径',res);
|
|
|
self.setData({local_qr_code:res.path});
|
|
|
self.getLocalImage();
|
|
|
},
|
|
|
fail() {
|
|
|
console.log('失败');
|
|
|
}
|
|
|
})
|
|
|
});
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
// wx.getImageInfo({
|
|
|
// src: 'https://' + self.data.qr_code,
|
|
|
// success(res) {
|
|
|
// // console.log('二维码本地路径',res);
|
|
|
// self.setData({local_qr_code:res.path});
|
|
|
// self.getLocalImage();
|
|
|
// },
|
|
|
// fail() {
|
|
|
// console.log('失败');
|
|
|
// }
|
|
|
// })
|
|
|
// });
|
|
|
// }
|
|
|
// })
|
|
|
// },
|
|
|
//点击分享
|
|
|
share() {
|
|
|
this.setData({show_canvas: true}, () => {
|
...
|
...
|
|