发票抬头功能页

发票抬头功能页用于展示用户的发票抬头列表,用户可以选择其中的发票抬头。自基础库版本 2.14.1 开始支持。

调用参数

发票抬头功能页使用 functional-page-navigator 进行跳转时,对应的参数 name 应为固定值 chooseInvoiceTitle ,返回参数与 wx.chooseInvoiceTitle 相同。

bindsuccess 返回参数说明:

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

res.type 的合法值

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

代码示例:

  1. <!--plugin/components/hello-component.wxml-->
  2. <functional-page-navigator
  3. name="chooseInvoiceTitle"
  4. version="develop"
  5. bind:success="onSuccess"
  6. bind:fail="onFail"
  7. >
  8. <button>选择发票抬头</button>
  9. </functional-page-navigator>
  1. // plugin/components/hello-component.js
  2. Component({
  3. methods: {
  4. onSuccess: function (res) {
  5. console.log(res.detail);
  6. },
  7. onFail: function (res) {
  8. console.log(res);
  9. }
  10. }
  11. });