H5,uniapp 打开手机发送短信页面

时间:2021-08-12 12:10:53   收藏:0   阅读:68

methods: {

  // 3,发短信
  plusReady(){
    console.log("err")
  },
  //短信
  sendCode(phone){
    var msg = plus.messaging.createMessage(plus.messaging.TYPE_SMS);
    msg.to = [phone];
    msg.body = ‘要发送的消息‘;
    plus.messaging.sendMessage(msg);
  },

},

onLoad() {

  if(window.plus){
    plusReady();
  }else{
    document.addEventListener(‘plusready‘, plusReady, false);
  }
}

原文:https://www.cnblogs.com/shoolnight/p/15131842.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!