[新增]企业主页,企业活动

This commit is contained in:
zdx
2020-12-28 10:38:29 +08:00
parent d3fa1d743c
commit 3a559141d1
106 changed files with 4587 additions and 164 deletions

View 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,
})
},
})