[新增]企业主页,企业活动
This commit is contained in:
28
pages/home/projectReturn/projectReturn.js
Normal file
28
pages/home/projectReturn/projectReturn.js
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
|
||||
Page({
|
||||
data: {
|
||||
lists: [], //列表
|
||||
crowdfund_id:''
|
||||
},
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
onLoad(e) {
|
||||
this.setData({
|
||||
lists: JSON.parse(e.lists),
|
||||
crowdfund_id:e.crowdfund_id
|
||||
})
|
||||
},
|
||||
/**
|
||||
* 跳转到确认订单
|
||||
*/
|
||||
beSure(e) {
|
||||
console.log('besure');
|
||||
wx.navigateTo({
|
||||
url: '../beSureOrder/beSureOrder?crowdfund_item_id='+e.currentTarget.dataset.id+'&crowdfund_id='+this.data.crowdfund_id,
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
})
|
||||
Reference in New Issue
Block a user