haomingming 97a504c6d2 优化
2023-05-05 11:44:37 +08:00

100 lines
3.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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"
/>
<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"
/>
<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 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"
/>
<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="https://img.applets.igandanyiyuan.com/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="https://img.applets.igandanyiyuan.com/applet/doctor/static/images/yishi/cert/sfz2.png" />
</view>
</view>
</van-popup>
</view>