32 lines
2.0 KiB
Plaintext
32 lines
2.0 KiB
Plaintext
<!-- 我的银行卡页面 -->
|
||
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
||
<view class="container">
|
||
<view class="help">
|
||
<view class="help_title">
|
||
<text wx:if="{{ !banklist_empty }}">我的银行卡</text>
|
||
</view>
|
||
<view class="help_note" data-url="/user/pages/yishi/manual/index" bindtap="go">
|
||
操作手册-银行卡<t-icon size="26rpx" style="display: inline-block;" name="chevron-right" size="48rpx" data-name="chevron-right" />
|
||
</view>
|
||
</view>
|
||
<view class="bankcard_empty_box" wx:if="{{ banklist_empty }}">
|
||
<view class="bankcard_empty">
|
||
<van-image src="{{static_host}}/applet/doctor/static/images/yishi/bankcard_empty.png" fit="widthFix" width="500rpx" aria-label="空" />
|
||
</view>
|
||
<van-button data-url="/user/pages/yishi/bindcard/index" bind:click="go" custom-style="font-size: 30rpx;border-radius: 10rpx;background-color:#3CC7C0;border: none;width: 92vw;margin: 50rpx auto;" type="primary" block>添加结算银行卡</van-button>
|
||
<view class="note">提示:每人只能绑定一张银行卡,银行卡绑定成功后每月只能修改结算银行卡一次,请谨慎绑定。</view>
|
||
</view>
|
||
<view class="bankcard_list" wx:if="{{ !banklist_empty }}">
|
||
<view class="bankcard_list_item">
|
||
<van-image src="{{bank_img_path}}" fit="widthFix" width="100%" aria-label="空" />
|
||
<view class="bankcard_list_item_name">{{bank_name}}</view>
|
||
<view class="bankcard_list_item_num">{{bank_card_code_mask}}</view>
|
||
</view>
|
||
|
||
<van-button data-url="/user/pages/yishi/bindcard/index" bind:click="go" custom-style="font-size: 30rpx;border-radius: 10rpx;background-color:#3CC7C0;border: none;width: 92vw;margin: 50rpx auto;" type="primary" block>更换银行卡</van-button>
|
||
<view class="note">
|
||
<text>提示: 1、每人只能绑定一张银行卡,银行卡绑定成功后才可提取问诊费,请谨慎绑定。
|
||
2、每人每月限定只能修改一次结算银行卡。</text>
|
||
</view>
|
||
</view>
|
||
</view> |