67 lines
2.4 KiB
Plaintext
67 lines
2.4 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" style="height: calc(100vh - 96rpx - {{height}}px);">
|
|
<view class="tabs">
|
|
<t-tabs
|
|
defaultValue="{{0}}"
|
|
sticky
|
|
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}}">
|
|
|
|
<van-cell-group>
|
|
<van-field
|
|
model:value="{{ realname }}"
|
|
label="真实姓名"
|
|
type="text"
|
|
placeholder="请填写真实姓名,提交后不能修改"
|
|
placeholder-style="font-size:28rpx; color: #C5C8CB;"
|
|
input-align="right"
|
|
required
|
|
clearable
|
|
custom-style="font-size:30rpx;"
|
|
/>
|
|
<van-field
|
|
model:value="{{ idcard }}"
|
|
type="idcard"
|
|
label="身份证号"
|
|
placeholder="请填写身份证号"
|
|
placeholder-style="font-size:28rpx; color: #C5C8CB;"
|
|
input-align="right"
|
|
required
|
|
clearable
|
|
custom-style="font-size:30rpx;"
|
|
border="{{ false }}"
|
|
/>
|
|
</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" style="{{tabPanelstyle}}">
|
|
<myprofile />
|
|
|
|
</t-tab-panel>
|
|
</t-tabs>
|
|
</view>
|
|
<van-toast id="van-toast" />
|
|
</view> |