You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bankCard.wxml 611B

1234567891011121314151617
  1. <view class="bankCard">
  2. <view class="card">
  3. <view class="bankImg" wx:if="{{bankIcon}}"
  4. class="{{bankIcon}} bankImg" style="color: {{color}}"></view>
  5. <view class="bank-icon bankImg" wx:if="{{!bankIcon}}"></view>
  6. <view class="text">
  7. <view class="name">{{bankInfo.name}}</view>
  8. <view class="num" wx:if="{{bankInfo.account}}">
  9. {{bankInfo.account}}</view>
  10. </view>
  11. <view class="btn" wx:if="type">
  12. <text>签约</text>
  13. <!-- <auto-image width="28rpx" height="28rpx"
  14. src="/static/handleCar/right.png" class="right"></auto-image> -->
  15. </view>
  16. </view>
  17. </view>