2025-04-05 23:47:00 +08:00

21 lines
490 B
JavaScript

Component({
properties: {
merchantList: Array
},
data: {},
methods: {
call: function(t) {
var e = t.currentTarget.dataset.tel;
wx.makePhoneCall({
phoneNumber: e
});
},
toMap: function(t) {
var e = t.currentTarget.dataset, a = e.latitude, n = e.longitude;
wx.openLocation({
latitude: a,
longitude: n
});
}
}
});