uni.chooseInvoiceTitle(OBJECT)

选择用户的发票抬头,需要用户授权 scope.invoiceTitle。

在微信小程序中,当前当前小程序必须关联一个公众号,且这个公众号是完成了微信认证的,才能调用 chooseInvoiceTitle。

平台差异说明

5+AppH5微信小程序支付宝小程序百度小程序头条小程序
xxxx

OBJECT参数说明

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

success返回参数说明

属性类型说明平台差异说明
typestring抬头类型(0:单位,1:个人)
titlestring抬头名称
taxNumberstring抬头税号
companyAddressstring单位地址
telephonestring手机号码
bankNamestring银行名称
bankAccountstring银行账号
errMsgstring错误信息微信小程序

示例代码

  1. uni.chooseInvoiceTitle({
  2. success(res) {
  3. console.log(res.type);
  4. console.log(res.title);
  5. console.log(res.taxNumber);
  6. console.log(res.companyAddress);
  7. console.log(res.telephone);
  8. console.log(res.bankName);
  9. console.log(res.bankAccount);
  10. }
  11. })

发现错误?想参与编辑?在 GitHub 上编辑此页面!