init version kelfy-mini for new gitea
This commit is contained in:
263
pages/userRefund/userRefund.wxml
Normal file
263
pages/userRefund/userRefund.wxml
Normal file
@@ -0,0 +1,263 @@
|
||||
|
||||
<view>
|
||||
<view class="container">
|
||||
<view style="text-indent: 2em;margin-right: 1em;">为积极响应国家关于提升医疗服务质量和效率的号召,库尔勒市妇幼保健院开展就诊卡门诊预交金余额清退工作,旨在简化就医流程,推广身份证、电子健康码、医保码等便捷就医方式,逐步淘汰实体就诊卡。</view>
|
||||
<view style="text-indent: 2em;margin-bottom: 1em;">本院向您郑重承诺,您的个人信息仅用于就诊卡退费使用。</view>
|
||||
|
||||
</view>
|
||||
|
||||
<view class="container-titile">
|
||||
<view class="container-text">
|
||||
填写收款信息
|
||||
<span style="text-indent: 2em;color:rgb(247, 8, 8); margin-right: 5em;">
|
||||
(请填写本人信息确保以下内容均为同一人)
|
||||
</span>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class = "container-info">
|
||||
<van-field
|
||||
value="{{ refname }}"
|
||||
required
|
||||
clearable
|
||||
label="就诊卡登记姓名"
|
||||
placeholder="请填写身份证上的全名,不要有错字"
|
||||
bind:change="onChangeRefname"
|
||||
style="z-index: 2;"
|
||||
/>
|
||||
|
||||
<van-field
|
||||
value="{{ refidcard }}"
|
||||
label="身份证号"
|
||||
placeholder="请输入就诊卡人的身份证号"
|
||||
type="idcard"
|
||||
required
|
||||
border="{{ false }}"
|
||||
bind:change="onChangeIdcard"
|
||||
style="z-index: 2;"
|
||||
|
||||
/>
|
||||
<van-field
|
||||
value="{{ refbankcard }}"
|
||||
label="银行卡号"
|
||||
placeholder="请输入银行卡号"
|
||||
required
|
||||
border="{{ false }}"
|
||||
bind:change="onChangeRefbankcard"
|
||||
style="z-index: 2;"
|
||||
|
||||
/>
|
||||
<van-field
|
||||
value="{{ refbankcardname }}"
|
||||
label="银行卡持卡人姓名"
|
||||
placeholder="请输入银行卡持卡人姓名"
|
||||
required
|
||||
border="{{ false }}"
|
||||
bind:change="onChangeRefbankcardname"
|
||||
style="z-index: 2;"
|
||||
|
||||
/>
|
||||
<van-field
|
||||
value="{{ refbanktypeinfo }}"
|
||||
label="开户行"
|
||||
placeholder="请选择银行卡开户行类型"
|
||||
required
|
||||
border="{{ false }}"
|
||||
right-icon="arrow-down"
|
||||
readonly="true"
|
||||
bind:click-input="showPopBankType"
|
||||
bind:click-icon="showPopBankType"
|
||||
style="z-index: 2;"
|
||||
|
||||
/>
|
||||
<view class="wsbanktype" wx:if="{{ isShowBankManual }}">
|
||||
<van-field
|
||||
value="{{ refbankmanual }}"
|
||||
placeholder="请输入银行卡开户行类型"
|
||||
border="{{ false }}"
|
||||
bind:change="onChangeBankType"
|
||||
style="z-index: 2;"
|
||||
|
||||
/>
|
||||
</view>
|
||||
<van-field
|
||||
value="{{ reftel }}"
|
||||
label="手机号"
|
||||
placeholder="请输入手机号"
|
||||
required
|
||||
border="{{ false }}"
|
||||
bind:change="onChangeReftel"
|
||||
style="z-index: 2;"
|
||||
|
||||
/>
|
||||
</view>
|
||||
|
||||
<view class="itemStu" wx:if="{{ !ifchild }}">
|
||||
<view class="leftStu">
|
||||
<span style="color: red;">*</span>身份证正面
|
||||
</view>
|
||||
<view class="rightStu">
|
||||
<!-- 图片容器 -->
|
||||
<view class="image-container" bindtap="chooseImageIdcard">
|
||||
<!-- 显示上传的图片 -->
|
||||
<image
|
||||
src="{{imageUrlIdcard || 'https://hnwjyy.oss-cn-shanghai.aliyuncs.com/idcard-bg.png'}}"
|
||||
mode="aspectFill"
|
||||
class="upload-image"
|
||||
></image>
|
||||
<!-- 提示文字 -->
|
||||
<view wx:if="{{!imageUrlIdcard}}" class="placeholder-text">成年人请上传本人身份证正面</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="itemStu" wx:if="{{ ifchild }}">
|
||||
<view class="leftStu">
|
||||
<span style="color: red;">*</span>身份证正面
|
||||
</view>
|
||||
<view class="rightStu">
|
||||
<!-- 图片容器 -->
|
||||
<view class="image-container" bindtap="chooseImageIdcard">
|
||||
<!-- 显示上传的图片 -->
|
||||
<image
|
||||
src="{{imageUrlIdcard || 'https://hnwjyy.oss-cn-shanghai.aliyuncs.com/idcard-bg.png'}}"
|
||||
mode="aspectFill"
|
||||
class="upload-image"
|
||||
></image>
|
||||
<!-- 提示文字 -->
|
||||
<view wx:if="{{!imageUrlIdcard}}" class="placeholder-text">请上传收款人身份证正面</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="itemStu" wx:if="{{ ifchild }}" >
|
||||
<view class="leftStu">
|
||||
<span style="color: red;">*</span>身份证正面或户口本本人页或出生证明
|
||||
</view>
|
||||
<view class="rightStu">
|
||||
<!-- 图片容器 -->
|
||||
<view class="image-container" bindtap="chooseImageChildId">
|
||||
<!-- 显示上传的图片 -->
|
||||
<image
|
||||
src="{{imageUrlChildId || 'https://hnwjyy.oss-cn-shanghai.aliyuncs.com/idcard-bg.png'}}"
|
||||
mode="aspectFill"
|
||||
class="upload-image"
|
||||
></image>
|
||||
<!-- 提示文字 -->
|
||||
<view wx:if="{{!imageUrlChildId}}" class="placeholder-text">儿童请上传收款人身份证及儿童的身份证或户口本或出生证明三选一</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="itemStu" >
|
||||
<view class="leftStu">
|
||||
<span style="color: red;">*</span>银行卡正面
|
||||
</view>
|
||||
<view class="rightStu">
|
||||
<!-- 图片容器 -->
|
||||
<view class="image-container" bindtap="chooseImageBankcard">
|
||||
<!-- 显示上传的图片 -->
|
||||
<image
|
||||
src="{{imageUrlBankcard || 'https://hnwjyy.oss-cn-shanghai.aliyuncs.com/idcard-bg.png'}}"
|
||||
mode="aspectFill"
|
||||
class="upload-image"
|
||||
></image>
|
||||
<!-- 提示文字 -->
|
||||
<view wx:if="{{!imageUrlBankcard}}" class="placeholder-text">银行卡正面(显示银行卡号码)</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- <view wx:if="{{showCropper}}" class="mask" bindtap="preventDefault"></view> -->
|
||||
<view id="cropperR" class="clsCropper" wx:if="{{ showCropper }}">
|
||||
<image-cropper
|
||||
id="image-cropper"
|
||||
imgSrc="{{orgImageSrc}}"
|
||||
bindload="onCropperLoad"
|
||||
bindimageload="OnCropperloadimage"
|
||||
bindtapcut="onCropperConfirm"
|
||||
width="{{width}}"
|
||||
height="{{height}}"
|
||||
max_width="{{max_width}}"
|
||||
max_height="{{max_height}}"
|
||||
></image-cropper>
|
||||
|
||||
<view class = "buttonRfooter" >
|
||||
<button id="specialButton1" class="buttonR" bindtap="onCropperCancel">取消</button>
|
||||
<button id="specialButton2" class="buttonR" catchtouchstart='rotate' catchtouchend='end' data-type="rotate">旋转</button>
|
||||
<button id="specialButton3" class="buttonR" bindtap="triggerCut">确认</button>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- </van-cell-group> -->
|
||||
|
||||
<van-popup
|
||||
show="{{ showbanktype }}"
|
||||
round
|
||||
closeable
|
||||
position="bottom"
|
||||
bind:close="onCloseBankType">
|
||||
<view class="popWrap">
|
||||
<view class="title1">选择银行卡开户行类型</view>
|
||||
<view class="msgItem" wx:for="{{bankType}}" wx:key="item" data-item="{{item}}" bindtap="confirmBankType">{{item.name}}</view>
|
||||
</view>
|
||||
</van-popup>
|
||||
|
||||
<view class="rw-class">
|
||||
<van-dialog
|
||||
use-slot
|
||||
bind:confirm="onConfirmTips"
|
||||
id="van-dialog1"
|
||||
|
||||
show="{{ tipsdialog }}"
|
||||
>
|
||||
<view class="rwTitle">就诊卡退费</view>
|
||||
<view class="wrapStu" >
|
||||
<text class="rwtips" >尊敬的各位患者及家属:
|
||||
为积极响应国家关于提升医疗服务质量和效率的号召,库尔勒市妇幼保健院开展就诊卡门诊预交金余额清退工作,旨在简化就医流程,推广身份证、电子健康码、医保码等便捷就医方式,逐步淘汰实体就诊卡。
|
||||
本院向您郑重承诺,您的个人信息仅用于就诊卡退费使用。 </text>
|
||||
</view>
|
||||
</van-dialog>
|
||||
</view>
|
||||
|
||||
<view class="rw-class">
|
||||
<van-dialog
|
||||
use-slot
|
||||
bind:confirm="onConfirmAlert"
|
||||
bind:cancel="onCancelAlert"
|
||||
id="van-dialog1"
|
||||
show-cancel-button
|
||||
cancel-button-text="再看看"
|
||||
show="{{ isalert }}"
|
||||
>
|
||||
<view class="rwTitle">提示</view>
|
||||
<view class="wrapStu" >
|
||||
<text class="wrapAlert" >提交后无法修改,确认提交?</text>
|
||||
</view>
|
||||
</van-dialog>
|
||||
</view>
|
||||
|
||||
<view class="rw-class">
|
||||
<van-dialog
|
||||
use-slot
|
||||
bind:confirm="onConfirmAlert1"
|
||||
id="van-dialog1"
|
||||
show="{{ isalert1 }}"
|
||||
>
|
||||
<view class="rwTitle">提示</view>
|
||||
<view class="wrapStu" >
|
||||
<text class="wrapAlert" >信息已上传,审核中处理中,请耐心等待</text>
|
||||
</view>
|
||||
</van-dialog>
|
||||
</view>
|
||||
|
||||
<!-- 底部按钮 -->
|
||||
<view>
|
||||
<text class="footertips" >请保证以上信息真实有效,提交后无法修改,代办经本人授权处理,由此产生的纠纷与本院无关。</text>
|
||||
</view>
|
||||
<view class="footer">
|
||||
<button class="btn reset" bindtap="handleReset">重置</button>
|
||||
<button class="btn submit" bindtap="onhandleSubmit">提交</button>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user