8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
export function makePhone(tel : string) {
|
|
wx.makePhoneCall({
|
|
phoneNumber:tel,
|
|
fail(er) {
|
|
console.error(er)
|
|
}
|
|
})
|
|
} |