choose-bank.wxml 547 B

123456789101112131415161718
  1. <import src="../public-view.wxml" />
  2. <view style="height: 24rpx; width:750rpx;"></view>
  3. <template is="choose-bank-item" wx:for="{{data}}" wx:key="" data="{{...data[index], i: index}}" />
  4. <view class="other-bank" bindtap="otherBank"><text>其他银行</text></view>
  5. <view style="width:750rpx;height:200rpx;"></view>
  6. <template name="choose-bank-item">
  7. <view class="item" id="{{i}}" bindtap="itemChoose">
  8. <image src="../../../icon/bank/{{icon}}.png"></image>
  9. <text>{{bank}}</text>
  10. </view>
  11. <template is="right-line" />
  12. </template>