63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
<!-- 绑定银行卡页面 -->
|
|
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
|
<view class="container" style="height: calc(100vh - 96rpx - {{height}}px);">
|
|
<view class="top_note">
|
|
<van-image style="display: flex;align-items: center;margin-right: 10rpx;" src="https://img.applets.igandanyiyuan.com/applet/doctor/static/images/bell.png" fit="widthFix" width="45rpx" aria-label="qrcode" />
|
|
<text>请确定开户人姓名与账户医生的姓名一致</text>
|
|
</view>
|
|
<view class="info">
|
|
<van-cell-group>
|
|
<van-cell size="large" title="姓名" value="{{realname}}" />
|
|
<van-cell size="large" title="身份证号" value="{{idcard}}" border="{{ false }}" />
|
|
</van-cell-group>
|
|
</view>
|
|
|
|
<view class="bankcard">
|
|
<van-cell-group>
|
|
<van-cell size="large" title="所在城市" value="{{city_note}}" is-link bindtap="onCityShow"/>
|
|
<van-cell size="large" title="开户行" value="{{bank_note}}" is-link bindtap="onBankShow"/>
|
|
<van-field
|
|
placeholder="请输入卡号"
|
|
model:value="{{ bankcard }}"
|
|
input-align="right"
|
|
type="number"
|
|
clearable
|
|
placeholder-style="font-size: 16px;"
|
|
>
|
|
<text slot="label" style="font-size: 30rpx;">银行卡号</text>
|
|
</van-field>
|
|
</van-cell-group>
|
|
</view>
|
|
|
|
<view class="note">
|
|
提示:银行卡提交即绑定成功,上述信息请保证信息真实准确性,避免影响提取服务费。
|
|
</view>
|
|
|
|
<van-button bind:click="addBank" custom-style="font-size: 30rpx;border-radius: 10rpx;background-color:#3CC7C0;border: none;width: 92vw;margin: 50rpx auto;" type="primary" block>提交</van-button>
|
|
|
|
<van-popup
|
|
show="{{ bank_show }}"
|
|
position="bottom"
|
|
bind:close="onBankClose"
|
|
round
|
|
>
|
|
<van-picker
|
|
show-toolbar
|
|
title="请选择开户行"
|
|
columns="{{ bankList }}"
|
|
default-index="{{select_bank_index}}"
|
|
bind:cancel="onBankCancel"
|
|
bind:confirm="onBankConfirm"
|
|
bind:change="onBankChange" />
|
|
</van-popup>
|
|
|
|
<t-cascader
|
|
visible="{{ city_show }}"
|
|
theme="tab"
|
|
value="{{ select_county_id }}"
|
|
options="{{ areaList }}"
|
|
title="请选择地址"
|
|
sub-titles="{{area_sub_titles}}"
|
|
bind:change="onChangeCity"
|
|
></t-cascader>
|
|
</view> |