中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何跳转拨打电话页面?
微信扫码分享
import { call } from '@kit.TelephonyKit'; import { BusinessError } from '@kit.BasicServicesKit'; @Entry @Component struct Index { build() { Column() { Button("拨打电话").onClick(() => { call.makeCall("13811111111", (err: BusinessError) => { if (err) { console.error(`makeCall fail, err->${JSON.stringify(err)}`); } else { console.log(`makeCall success`); } }); }) } .height("100%") .width('100%') .justifyContent(FlexAlign.Center) } }