小程序
小游戏
企业微信
微信支付
扫描小程序码分享
phoneNumber格式为"座机号码,分机号码",iphone及其他安卓(现有)能正常拨打分机号,华为手机不能.
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
经过实验,华为系统会把分区号去掉,暂时没有解决方法。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
直接调用小程序的api拨打电话,400电话格式为"4007055222,5367"
wx.makePhoneCall({
phoneNumber: realPhone,
})
完成代码如下(我们对华为机器添加了提醒)
app.aldstat.sendEvent(
'400电话拨打'
, {
'400电话'
:
this
.data.realMobile400
});
var
realPhone =
if
(realPhone ==
null
|| realPhone ==
''
){
wx.showToast({
title:
'暂无电话信息'
,
icon:
'none'
duration: 2000
}
else
{
sysInfo = wx.getSystemInfoSync()
console.log(sysInfo.brand)
(sysInfo.brand ==
'Huawei'
) {
wx.showModal({
'拨打400电话'
content:
'华为手机用户请手动输入分机号:'
+ realPhone.split(
","
)[1],
showCancel:
true
success:
function
(res) {
console.log(res)
(res.confirm ==
'将自动为您转拨楼盘分机号'
(res){
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
经过实验,华为系统会把分区号去掉,暂时没有解决方法。
直接调用小程序的api拨打电话,400电话格式为"4007055222,5367"
wx.makePhoneCall({
phoneNumber: realPhone,
})
完成代码如下(我们对华为机器添加了提醒)
app.aldstat.sendEvent(
'400电话拨打'
, {
'400电话'
:
this
.data.realMobile400
});
var
realPhone =
this
.data.realMobile400
if
(realPhone ==
null
|| realPhone ==
''
){
wx.showToast({
title:
'暂无电话信息'
,
icon:
'none'
,
duration: 2000
})
}
else
{
var
sysInfo = wx.getSystemInfoSync()
console.log(sysInfo.brand)
if
(sysInfo.brand ==
'Huawei'
) {
wx.showModal({
title:
'拨打400电话'
,
content:
'华为手机用户请手动输入分机号:'
+ realPhone.split(
","
)[1],
showCancel:
true
,
success:
function
(res) {
console.log(res)
if
(res.confirm ==
true
){
wx.makePhoneCall({
phoneNumber: realPhone,
})
}
}
})
}
else
{
wx.showModal({
title:
'拨打400电话'
,
content:
'将自动为您转拨楼盘分机号'
,
showCancel:
true
,
success:
function
(res){
if
(res.confirm ==
true
){
wx.makePhoneCall({
phoneNumber: realPhone,
})
}
}
})
}
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题