1234567891011121314151617181920212223242526272829303132333435363738 |
- //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(){
- },
-
- });
|