haomingming 12e4984a95 优化
2023-03-23 15:52:15 +08:00

78 lines
3.0 KiB
Plaintext

<!-- <nav-bar navbar-data='{{navbarData}}' style="margin-bottom: {{height*2 + 20}}px;"></nav-bar> -->
<te-nav-bar navbar-data='{{navbarData}}'></te-nav-bar>
<view class="container">
<view class="tabs">
<t-tabs
defaultValue="{{ selected_tab }}"
value="{{selected_tab}}"
sticky="{{true}}"
stickyProps="{{stickyProps}}"
bind:change="onTabsChange"
bind:click="onTabsClick"
bind:scroll="onStickyScroll"
t-class="custom-tabs"
theme="line"
custom-style="font-size: 32rpx"
>
<!-- 实名认证tab -->
<t-tab-panel label="实名认证" value="0" style="{{tabPanelstyle}}" catchtouchmove='true'>
<van-cell-group>
<van-field
model:value="{{ realname }}"
type="text"
placeholder="请填写真实姓名,提交后不能修改"
placeholder-style="font-size:28rpx; color: #C5C8CB;"
input-align="right"
clearable
type="text"
custom-style="font-size:30rpx;"
disabled="{{next_btn_disabled}}"
>
<text slot="label">真实姓名 <text style="color: #e34d59;">*</text> </text>
</van-field>
<van-field
model:value="{{ idcard }}"
type="idcard"
placeholder="请填写身份证号"
placeholder-style="font-size:28rpx; color: #C5C8CB;"
input-align="right"
clearable
custom-style="font-size:30rpx;"
disabled="{{next_btn_disabled}}"
>
<text slot="label">身份证号 <text style="color: #e34d59;">*</text> </text>
</van-field>
</van-cell-group>
<!-- <t-cell title="真实姓名" hover required arrow note="请填写真实姓名,提交后不能修改"/> -->
<!-- <t-cell title="身份证号" hover required arrow note="请填写身份证号"/> -->
<view class="bottom_note">
说明:因互联网医院实行实名制要求,需要您的身份信息,包括姓名,身份证号码。如您不能提供上述信息,将无法完成医师身份认证。
</view>
<view class="bottom_next">
<van-button disabled="{{next_btn_disabled}}"
color="#3CC7C0" bind:click="postDoctorAuthReal"
custom-style="border-radius: 20rpx;font-size: 30rpx;"
type="primary" block>{{next_btn_txt}}</van-button>
</view>
</t-tab-panel>
<!-- 医师身份认证 -->
<t-tab-panel label="医师身份认证" value="1" disabled style="{{tabPanelstyle}}" wx:if="{{panel_2_disabled}}">
<myprofile wx:if="{{selected_tab == 1}}" />
<view style="height: 50rpx;"></view>
</t-tab-panel>
<t-tab-panel label="医师身份认证" value="1" style="{{tabPanelstyle}}" wx:if="{{!panel_2_disabled}}">
<myprofile wx:if="{{selected_tab == 1}}" />
<view style="height: 50rpx;"></view>
</t-tab-panel>
</t-tabs>
</view>
<!-- <van-toast id="van-toast" /> -->
</view>