wx.chooseInvoiceTitle(Object object)

基础库 1.5.0 开始支持,低版本需做兼容处理

调用前需要 用户授权 scope.invoiceTitle

选择用户的发票抬头。当前小程序必须关联一个公众号,且这个公众号是完成了微信认证的,才能调用 chooseInvoiceTitle。

参数

Object object

属性类型默认值必填说明
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.success 回调函数

参数
Object res
属性类型说明
typestring抬头类型
titlestring抬头名称
taxNumberstring抬头税号
companyAddressstring单位地址
telephonestring手机号码
bankNamestring银行名称
bankAccountstring银行账号
errMsgstring错误信息

res.type 的合法值

说明最低版本
0单位
1个人

示例代码

在开发者工具中预览效果

  1. wx.chooseInvoiceTitle({
  2. success(res) {}
  3. })