makePhoneCall

电话拨号

参数 params

属性 类型 含义 默认 必须 APP版本
phoneNumber number | string 手机号码

返回 Promise<response>

属性 类型 含义 APP版本
code string 200:成功 | 404:失败
msg string 响应信息
data unknown 响应数据

示例

import { makePhoneCall } from '@suplink/jssdk';

makePhoneCall({ phoneNumber: 110 }).then((res) => console.log(res))