static async wxLogin() {
if (!OAuthUtil.isWxInstalled()) {
throw new ServiceError(ServiceError.ERROR_CODE_798,
AppContext.getInstance().getString($r('app.string.wexin_install_tip')) + '');
}
let req = new wxopensdk.SendAuthReq
req.isOption1 = false
req.nonAutomatic = true
req.scope = 'snsapi_userinfo,snsapi_friend,snsapi_message,snsapi_contact'
req.state = 'none'
req.transaction = 'test123'
let finished = await WXApi.sendReq(AppContext.getInstance().getUIAbilityContext(), req)
console.log("send request finished: ", finished)
if (!finished) {
throw new ServiceError(ServiceError.ERROR_CODE_798,
AppContext.getInstance().getString($r('app.string.login_faild')) + '');
}
}

你好,复现问题时麻烦在手机微信那里上传下日志: 我->设置->帮助与反馈右上角有个上报日志的入口,麻烦提供一下微信号,时间点,提供下opensdk调用的时间点、bundleid、identifier、appid
确定手动提交审核了吗?https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Access_Guide/ohos.html
已经申请过了,微信支付已经是可以支付的。