You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
|
2 years ago
|
<view class="p10 pr">
|
||
|
|
<navigator url="/pages/cardDetail/index" class="cardbgTest va-center mt10" hover-class="thover">
|
||
|
|
<view class="flex-1 va-center">
|
||
|
|
<view class="cardlogo">
|
||
|
|
<image src="{{bank.bankLogo}}"></image>
|
||
|
|
</view>
|
||
|
|
<text class="cardName">{{bank.bankName}}</text>
|
||
|
|
</view>
|
||
|
|
<view class="fr cf fw500 f18 mr16">{{bank.bankNo}}</view>
|
||
|
|
</navigator>
|
||
|
|
<view class="bind" hover-class="hcb" bindtap="unbind">解除绑定</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
|
||
|
|
<scroll-view class="fadeIn" wx:if="{{cardSure}}" style="position: relative;z-index: 999;">
|
||
|
|
<view class="weui-mask"></view>
|
||
|
|
<view class="weui-dialog">
|
||
|
|
<view class="weui-dialog__hd"><strong class="weui-dialog__title">解绑银行卡</strong></view>
|
||
|
|
<view class="weui-dialog__bd">
|
||
|
|
<view>确定解除绑定此张银行卡吗?</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="display-flex pb20">
|
||
|
|
<view class="flex-1 lflex v-center" bindtap="close" hover-class="thover">取消</view>
|
||
|
|
<view class="rflex">
|
||
|
|
<button class="" catchtap="cancelBind">解绑</button>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</scroll-view>
|