拨打电话实现 代码如下:
//1、引入头文件
import call from '@ohos.telephony.call'
//2、 跳转到拨号界面,并显示拨号的号码
call.makeCall("136****1231", (err)=> {
if (!err) {
console.log("make call success.");
} else {
LoadingDialog.showToast("当前设备不支持拨打电话")
console.log("make call fail, err is:" + JSON.stringify(err));
}
});