feat(页面): 增加打电话功能
在页面跳转逻辑中增加电话拨打功能,当点击元素包含电话号码时,调用微信API进行拨号
This commit is contained in:
@@ -124,6 +124,14 @@ Page({
|
||||
},
|
||||
toPage: function (t) {
|
||||
console.info(t);
|
||||
|
||||
// 增加打电话
|
||||
if (t.currentTarget.dataset.phone) {
|
||||
wx.makePhoneCall({
|
||||
phoneNumber: "" + t.currentTarget.dataset.phone
|
||||
});
|
||||
return;
|
||||
}
|
||||
var a = t.currentTarget.dataset, i = a.url, o = a.needlogin, n = a.showimg;
|
||||
if (console.log("showImg", n), i) {
|
||||
this.isneedUpload = !0;
|
||||
|
||||
Reference in New Issue
Block a user