pays.vue 969 B

12345678910111213141516171819202122232425
  1. <template>
  2. <v-page>
  3. <v-header :title="$t('otc.j6')"></v-header>
  4. <view class="layout-main">
  5. <v-link to="/pages/otc/bind-pay?type=alipay" class="m-md p-md bg-panel-3 box-shadow rounded-sm d-flex">
  6. <view class="flex-fill">
  7. {{$t('otc.b7')}}
  8. </view>
  9. <van-icon name="arrow" />
  10. </v-link>
  11. <v-link to="/pages/otc/bind-pay?type=wechat" class="m-md p-md bg-panel-3 box-shadow rounded-sm d-flex">
  12. <view class="flex-fill">
  13. {{$t('otc.b8')}}
  14. </view>
  15. <van-icon name="arrow" />
  16. </v-link>
  17. <v-link to="/pages/otc/bind-pay?type=bank_card" class="m-md p-md bg-panel-3 box-shadow rounded-sm d-flex">
  18. <view class="flex-fill">
  19. {{$t('otc.b9')}}
  20. </view>
  21. <van-icon name="arrow" />
  22. </v-link>
  23. </view>
  24. </v-page>
  25. </template>