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.
44 lines
1.9 KiB
Plaintext
44 lines
1.9 KiB
Plaintext
<view class="mt16">
|
|
<view class="bgTest va-center">
|
|
<image src="http://matripe.oss-cn-beijing.aliyuncs.com/dagouAgency/wx.png"
|
|
style="width:46px;height:46px;margin-left:20px;"></image>
|
|
<text class="cardName">微信零钱</text>
|
|
</view>
|
|
|
|
<view wx:for="{{bankArray}}" wx:for-item="item" wx:key='{{index}}' bindtap="toCardDetail" data-item="{{item}}" class="cardbgTest va-center mt10" hover-class="thover">
|
|
<view class="flex-1 va-center">
|
|
<view class="cardlogo">
|
|
<image src="{{item.bankLogo}}"></image>
|
|
</view>
|
|
<text class="cardName">{{item.bankName}}</text>
|
|
</view>
|
|
<view class="fr cf fw500 f18 mr16">{{item.bankNo}}</view>
|
|
</view>
|
|
|
|
<view wx:if="{{user.idauth == 0}}" class="addcard v-center mt16" hover-class="thover" bindtap="showDialog">
|
|
<i class="iconfont icon-tianjia mr8"></i>
|
|
绑定银行卡
|
|
</view>
|
|
<navigator wx:if="{{user.idauth == 1}}" url="/pages/bindBankCard/index" class="addcard mt16 v-center" hover-class="thover">
|
|
<i class="iconfont icon-tianjia mr8"></i>
|
|
绑定银行卡
|
|
</navigator>
|
|
<!-- <view class="tc f14 c9" style="margin-top:30px;">暂时仅支持绑定“微信零钱”账户(可用于提现)</view> -->
|
|
</view>
|
|
<scroll-view class="fadeIn" wx:if="{{iosDialog1}}" 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="" type="" hover-class="thover" catchtap="emptyMethod">去实名</button>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</scroll-view> |