2023-03-17 10:13:35 +08:00

63 lines
2.5 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 }}"
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 }}"
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">医生手写签名 *</view>
<view class="sign" wx:if="{{sign_image == ''}}" 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 class="sign_img" wx:if="{{sign_image != ''}}" data-url="/Pages/yishi/signcanvas/index" bindtap="go">
<image mode="heightFix" style="transform: rotate(-90deg);width: 100%;" src="{{sign_image}}"></image>
</view>
<view class="sign_note">提示平台会在1~3天内审核您提交的资料审核结果会第一时间通知您。</view>
<!-- <van-button custom-style="font-size:30rpx; color:#fff; border-radius: 20rpx; background-color: #999" block>资料未填写完</van-button> -->
<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>
</view>