电话类,支持打电话,sms发信息

方法

call

call
(
  • options
)

打电话

参数:

名称类型标识描述
options Object 必选

配置参数

名称类型标识描述
phoneNum Number 必选

电话号码

success Function 必选

成功回调

[error] Function 可选

失败回调

示例:

<script>
   cmp.tel.call({
       phoneNum:12345678901
       success:function(){
           //do something
       },
       error:function(error){
       }
   });
</script>

findPhoneNum

findPhoneNum
(
  • options
)

查找电话号码

参数:

名称类型标识描述
options Object 必选

配置参数

名称类型标识描述
phoneNum Number 必选

电话号码

success Function 必选

成功回调

[error] Function 可选

失败回调

示例:

<script>
   cmp.tel.findPhoneNum({
       phoneNum:12345678901,
       success:function(){
           //do something
       },
       error:function(error){
       }
   });
</script>

sms

sms
(
  • options
)

发短信

参数:

名称类型标识描述
options Object 必选

配置参数

名称类型标识描述
phoneNum Number 必选

电话号码

message String 必选

短信内容

success Function 必选

成功回调

[error] Function 可选

失败回调

示例:

<script>
   cmp.tel.sms({
       phoneNum:12345678901,
       message:"发一个短信"
       success:function(){
           //do something
       },
       error:function(error){
       }
   });
</script>

syncToLocal

syncToLocal
(
  • options
)

同步到手机通讯录

参数:

名称类型标识描述
options Object 必选

配置参数

名称类型标识描述
name String 必选

用户名

mobilePhone Number 必选

移动电话

officePhone Number 必选

办公电话

email String 必选

E-mail地址

imageData String 必选

用户头像 图片base64编码

success Function 必选

成功回调

[error] Function 可选

失败回调

示例:

<script>
   cmp.tel.findPhoneNum({
       mobilePhone:12345678901,
       officePhone:888888,
       email:9999999@qq.com,
       imageData:"",
       success:function(){
           //do something
       },
       error:function(error){
       }
   });
</script>
Top