今天做了個(gè)聯(lián)系賣家功能煤蚌,就是使用小程序自定義按鈕去撥打一個(gè)電話號(hào)碼
這是官網(wǎng)貼的代碼示例:
wx.makePhoneCall({
? ? ? ? ?phoneNumber:'1340000'//僅為示例酌媒,并非真實(shí)的電話號(hào)碼
})
這個(gè)樣子只能滿足撥打固定的號(hào)碼,而我們下面這樣子做:
data:
{
phonecall: '123456789123' // 用data來(lái)定義電話號(hào)碼
}
?點(diǎn)擊事件
phonecall: function () {
? ? ?wx.makePhoneCall({
? ? ? ? ? ? phoneNumber: this.data.phonecall
? ? ?})
}