获取发票抬头

chooseInvoiceTitle

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

参数: Object

Object参数说明:

参数名类型必填说明
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数名类型说明
typeString抬头类型(0:单位,1:个人)
titleString抬头名称
taxNumberString抬头税号
companyAddressString单位地址
telephoneString手机号码
bankNameString银行名称
bankAccountString银行账号


示例:




  1. swan.chooseInvoiceTitle({
    success: function (res) {
    console.log(res.type);
    console.log(res.title);
    console.log(res.taxNumber);
    console.log(res.companyAddress);
    console.log(res.telephone);
    console.log(res.bankName);
    console.log(res.bankAccount);
    }
    })


百度收银台支付打开小程序