116 lines
4.2 KiB
Plaintext
116 lines
4.2 KiB
Plaintext
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
||
<view class="container" style="height: calc(100vh - 96rpx - {{height}}px);">
|
||
<m-upload-cell
|
||
upload_cell_name="上传身份证正面照片"
|
||
t_icon_name="view-module"
|
||
bind:showNote="onshowIdCardFrontNote"
|
||
upload_cell_desc=""
|
||
upload_cell_note="查看示例"
|
||
fileList="{{ id_card_front }}"
|
||
deletable="{{!btn_disabled}}"
|
||
max_count="1"
|
||
data-scene="2"
|
||
data-field_name="id_card_front"
|
||
data-file_multiple="true"
|
||
bindUploadFile="doUploadFile"
|
||
bindDeleteFile="doDeleteFile"
|
||
static_host="{{static_host}}"
|
||
/>
|
||
|
||
<m-upload-cell
|
||
upload_cell_name="上传身份证反面照片"
|
||
t_icon_name="view-module"
|
||
bind:showNote="onshowIdCardBackNote"
|
||
upload_cell_desc=""
|
||
upload_cell_note="查看示例"
|
||
fileList="{{ id_card_back }}"
|
||
deletable="{{!btn_disabled}}"
|
||
max_count="1"
|
||
data-scene="2"
|
||
data-field_name="id_card_back"
|
||
data-file_multiple="true"
|
||
bindUploadFile="doUploadFile"
|
||
bindDeleteFile="doDeleteFile"
|
||
static_host="{{static_host}}"
|
||
/>
|
||
|
||
<van-cell-group border="{{ false }}">
|
||
<van-cell size="large"
|
||
url="/Pages/yishi/manual/index"
|
||
title="多点执业认证流程"
|
||
border="{{ false }}"
|
||
value='查看操作手册'
|
||
is-link />
|
||
|
||
<view class="notice">注:请先了解多点执业认证流程,再提交审核</view>
|
||
|
||
<van-divider customStyle="color: #999; width:95vw; margin: 20rpx auto;" />
|
||
|
||
<view class="sign_box">
|
||
<view class="sign_title">医生手写签名 <text style="color: #e34d59;">*</text></view>
|
||
<view class="sign" wx:if="{{sign_image.length == 0}}" data-url="/Pages/yishi/signcanvas/index" bindtap="go">
|
||
<van-button custom-style="height:130rpx;margin-top:20rpx;border-radius: 20rpx;border: 1px dashed #999;width:100%;font-size:30rpx;background-color: #fff;color: #3CC7C0;" icon="edit">点击签名</van-button>
|
||
</view>
|
||
<view style="margin-top:20rpx;border-radius: 20rpx;border: 1px dashed #999;" class="sign_img" wx:if="{{sign_image.length > 0}}">
|
||
<image bindtap="{{btn_disabled?'':'go'}}" data-url="/Pages/yishi/signcanvas/index" mode="heightFix" style="transform: rotate(-0deg);width: 100%;" src="{{sign_image[0].url}}"></image>
|
||
</view>
|
||
</view>
|
||
|
||
<m-upload-cell
|
||
upload_cell_name="或选择上传"
|
||
t_icon_name="view-module"
|
||
bind:showNote="onShowSignImage"
|
||
upload_cell_desc=""
|
||
upload_cell_note=""
|
||
required="{{false}}"
|
||
disabled="{{btn_disabled}}"
|
||
upload_cell_note_show="{{false}}"
|
||
max_count="1"
|
||
data-scene="2"
|
||
data-field_name="sign_image"
|
||
data-file_multiple="true"
|
||
bindUploadFile="doUploadFile"
|
||
bindDeleteFile="doDeleteFile"
|
||
static_host="{{static_host}}"
|
||
/>
|
||
<view class="sign_box">
|
||
<view class="sign_note">提示:平台会在1~3个工作日内审核您提交的资料,审核结果会第一时间通知您。</view>
|
||
<van-button bind:click="add"
|
||
custom-style="font-size:30rpx; color:#fff; border-radius: 20rpx; background-color: #3CC7C0" disabled="{{btn_disabled}}" block>{{btn_txt}}</van-button>
|
||
</view>
|
||
<view style="height: 50rpx;"></view>
|
||
</van-cell-group>
|
||
|
||
<van-popup
|
||
show="{{ sfz_show }}"
|
||
closeable
|
||
round
|
||
lock-scroll
|
||
position="bottom"
|
||
bind:close="onsfzClose"
|
||
>
|
||
<view class="zhiye_popup">
|
||
<view class="zhiye_popup_title">身份证示例</view>
|
||
<view class="zhiye_popup_img">
|
||
<van-image lazy-load slot="loading" type="spinner" fit="widthFix" width="420rpx" src="{{static_host}}/applet/doctor/static/images/yishi/cert/sfz1.png" />
|
||
</view>
|
||
<view class="zhiye_popup_img">
|
||
<van-image lazy-load slot="loading" type="spinner" fit="widthFix" width="420rpx" src="{{static_host}}/applet/doctor/static/images/yishi/cert/sfz2.png" />
|
||
</view>
|
||
</view>
|
||
</van-popup>
|
||
|
||
<t-dialog
|
||
visible="{{ sub_visible }}"
|
||
title="温馨提示"
|
||
content="您已关闭订阅消息通知,请点击“确认”按钮在设置中打开订阅通知。"
|
||
>
|
||
<view slot="cancel-btn" class="dialog dialog_cancel_btn" bindtap="subcancelDialog">
|
||
取消
|
||
</view>
|
||
<view slot="confirm-btn" class="dialog dialog_confirm_btn" bindtap="subconfirmDialog">
|
||
确定
|
||
</view>
|
||
</t-dialog>
|
||
|
||
</view> |