//Component Object Component({ properties: { shops: { type: Array, value: [] }, }, data: { }, methods: { getLocation: function(res){ this.triggerEvent('getLocation', { }); }, gotoShopInfo:function (e){ let id = e.currentTarget.dataset.id; wx.navigateTo({ url: '../../pages/shopinfo/shopinfo?id='+id, }) } }, created: function(){ }, attached: function(){ }, ready: function(){ }, moved: function(){ }, detached: function(){ }, });