// components/My_VerticalBox/index.js Component({ options: { addGlobalClass: true, }, /** * 组件的属性列表 */ properties: { list: { type: Array }, pageType: { type: String, value: 'home' } }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { /* 首页合作商家跳转 */ homeToPage(e) { const { index } = e.currentTarget.dataset; wx.navigateTo({ url: '/pages/storeMessage/storehomepage?id=' + this.data.list[index].tcooperationagentsid, }) } } })