1.更新了体检上门
2.修复自费成功页面无法隐藏加载中页面问题
This commit is contained in:
113
pages/checkoutsm/checkoutsm.wxml
Normal file
113
pages/checkoutsm/checkoutsm.wxml
Normal file
@@ -0,0 +1,113 @@
|
||||
<view class="container">
|
||||
|
||||
|
||||
<view class="message-box">
|
||||
<van-field
|
||||
value="{{ value }}"
|
||||
placeholder="请核对项目后,选择开单!成功后,请到门诊结算付款!"
|
||||
disabled
|
||||
/>
|
||||
</view>
|
||||
|
||||
<view class="tjinfo" >
|
||||
<!-- 默认160rpx 最多只能放6个汉字 -->
|
||||
<view class="tjinfo-left">学校:</view>
|
||||
<view class="tjinfo-middle">{{ selectSchoolName }}</view>
|
||||
</view>
|
||||
<!-- <view class="tjinfo" >
|
||||
<view class="tjinfo-left">班级:</view>
|
||||
<view class="tjinfo-middle">{{ selectClassName }}</view>
|
||||
</view> -->
|
||||
<view class="tjinfo" >
|
||||
<view class="tjinfo-left">姓名:</view>
|
||||
<view class="tjinfo-middle">{{ selectName }}</view>
|
||||
</view>
|
||||
|
||||
<!-- 分割线 -->
|
||||
<view class="view_fengexian">
|
||||
<view ></view>
|
||||
<!-- <text class="text_fengexian"></text> -->
|
||||
<view ></view>
|
||||
</view>
|
||||
|
||||
<view hidden="{{!hideStadndard}}">
|
||||
<view class="tjitem" >
|
||||
<view class="tjitem-list-wrap {{(iindex + 1) % 2 == 0 ? 'item-b' : ''}}" url="/pages/goods/goods?id={{iitem.id}}"
|
||||
wx:for="{{checkStandardList}}" wx:key="id" wx:for-item="iitem" wx:for-index="iindex">
|
||||
|
||||
<view class="tjitem-list-big" wx:if="{{iitem.checked}}">{{iitem.itemname}}</view>
|
||||
<view class="tjitem-right" wx:if="{{iitem.checked}}">¥{{iitem.itemprice}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="tjitem" >
|
||||
<view class="tjitem-content"> {{checkStandardContent}} </view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 分割线 -->
|
||||
<view class="view_fengexian">
|
||||
<view ></view>
|
||||
<!-- <text class="text_fengexian"></text> -->
|
||||
<view ></view>
|
||||
</view>
|
||||
|
||||
<view hidden="{{!hideAddtion}}">
|
||||
|
||||
<view class="tjitem" >
|
||||
<view class="tjitem-left-header">可选项目</view>
|
||||
</view>
|
||||
<view class="tjitem-list-wrap {{(iindex + 1) % 2 == 0 ? 'item-b' : ''}}" url="/pages/goods/goods?id={{iitem.id}}"
|
||||
wx:for="{{checkAddtionList}}" wx:key="id" wx:for-item="iitem" wx:for-index="iindex">
|
||||
|
||||
<view class="tjitem-list" wx:if="{{iitem.checked}}">{{iitem.itemname}}</view>
|
||||
<view class="tjitem-right" wx:if="{{iitem.checked}}">¥{{iitem.itemprice}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
<!-- 确保信息显示 -->
|
||||
<view class="area">
|
||||
<view class="area-header">
|
||||
<view class="area-header-cont">
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<van-dialog
|
||||
use-slot
|
||||
title="开单成功,去缴费!"
|
||||
bind:close="onNavToJF"
|
||||
id="van-dialog"
|
||||
confirm-button-text="去缴费"
|
||||
show="{{ isShow }}"
|
||||
>
|
||||
<!-- <scroll-view class="kdlist" wx:if="{{isShow == true}}" scroll-y> -->
|
||||
<scroll-view class="kdlist" scroll-y>
|
||||
<van-cell-group custom-class="valueleft">
|
||||
<van-cell wx:for="{{ list }}" wx:key="index" title="{{ item.itemname }}" title-width ="300rpx" value="{{ item.errMsg }}"/>
|
||||
<van-cell wx:for="{{ listfail }}" wx:key="index" title="{{ item.itemname }}" title-width ="300rpx" value="失败"/>
|
||||
</van-cell-group>
|
||||
</scroll-view>
|
||||
</van-dialog>
|
||||
|
||||
<van-dialog
|
||||
use-slot
|
||||
title="温馨提示"
|
||||
bind:confirm="onConfirmTips"
|
||||
bind:cancel="onCancelTips"
|
||||
id="van-dialog1"
|
||||
show-cancel-button
|
||||
cancel-button-text="返回"
|
||||
custom-class="tipsdialog"
|
||||
show="{{ isTipsShow }}"
|
||||
>
|
||||
<view class="wrapStu" >
|
||||
<text class="rwtips" space="ensp"> 请再次核对已选项目和价格,一旦点击“确认”后,所选项目无法取消,请仔细核对,如需修改,请按“返回”键后重新选择项目!</text>
|
||||
</view>
|
||||
</van-dialog>
|
||||
|
||||
<view class="order-total">
|
||||
<view class="l">实付:¥{{totalPriceDisp}}</view>
|
||||
<view class="r" bindtap="submitOrder">确认</view>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user