打电话API之前正常,突然从打电话变成了在线客服
使用的这篇文章的https://blog.csdn.net/rolan1993/article/details/79709553代码,做了一个悬浮按钮,点击以后拨打电话的功能,刚开始正常,几天以后无意当中发现点击这个按钮变成了在线客服,不是打电话了
2 回复
你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
wxml
< view > < contact-button type = "default-dark" size = "20" session-from = "weapp" class = "img-plus-style zindex100 yc" > </ contact-button > < image src = "tel.png" class = "img-plus-style" bindtap = "calling" ></ image > </ view > |
wxss
.img-plus-style { height : 80 rpx; width : 80 rpx; position : fixed ; bottom : 130 rpx; right : 30 rpx; opacity: 0.7 ; } .zindex 100 { z-index : 100 ; } .yc { opacity: 0 ; } |
js
//拨打电话 calling: function () { wx.makePhoneCall({ phoneNumber: '13661153459' , }) }, |