111 lines
3.9 KiB
Plaintext
111 lines
3.9 KiB
Plaintext
|
||
<!-- <view class="cart-bottom">
|
||
<van-checkbox value="checked" bind:change="checkedAll">全选(5)</van-checkbox>
|
||
|
||
</view> -->
|
||
|
||
|
||
<view class="container">
|
||
<!-- <view class="item">
|
||
<view class="item-header">
|
||
<view class="item-header-cont">
|
||
项目列表
|
||
</view>
|
||
</view>
|
||
</view> -->
|
||
|
||
<view class="form">
|
||
<!-- <view class="tjb-info-right" >
|
||
<view class="tjb-info-content">
|
||
<van-button round type="info" icon="exchange" bind:click="chgDefault" size="small">切换体检人</van-button>
|
||
</view>
|
||
</view> -->
|
||
|
||
<van-popup
|
||
show="{{ studentSwitch }}"
|
||
position="bottom"
|
||
custom-style="height: 50%"
|
||
bind:close="studentShutdown"
|
||
>
|
||
<view class = "pickempty" wx:if = "{{ studentlist.length == 0 }}">无数据</view>
|
||
<view wx:if = "{{ studentlist != 0 }}">
|
||
<van-picker
|
||
show-toolbar
|
||
title="请选择"
|
||
columns="{{ studentlist }}"
|
||
value-key="name"
|
||
bind:cancel="studentShutdown"
|
||
bind:confirm="studentIdentification"
|
||
/>
|
||
</view>
|
||
</van-popup>
|
||
|
||
<view class="container">请核对项目后,选择开单!开单后请及时缴费,超过开单当天24:00后,订单自动取消,如需缴费,请重新选择项目并开单!</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>
|
||
<view ></view>
|
||
</view>
|
||
|
||
<view class="tjitem" wx:if = "{{smAddtionList.length != 0}}" >
|
||
<view class="tjitem-left-header">体检项目</view>
|
||
</view>
|
||
<view class="tjitem" wx:if = "{{smAddtionList.length == 0 && smStandardList.length == 0 }}" >
|
||
<view class="tjitem-left-header">无项目</view>
|
||
</view>
|
||
<!-- <view class="tjitem" >
|
||
<view class="tjitem-list">静态心电图</view>
|
||
<view class="tjitem-right">¥80</view>
|
||
|
||
</view> -->
|
||
<view class="tjitem-list-wrap {{(iindex + 1) % 2 == 0 ? 'item-b' : ''}}" url="/pages/goods/goods?id={{iitem.id}}"
|
||
wx:for="{{smAddtionList}}" wx:key="id" wx:for-item="iitem" wx:for-index="iindex">
|
||
<view class="tjitem-check">
|
||
<view class="tjitem-check-wrap" wx:if = "{{iitem.showflag == 0}}" >
|
||
<van-checkbox value="{{ iitem.checked }}" bind:change="onCheckOptionChange" checked-color="#07c160" data-item-index="{{iindex}}"/>
|
||
</view>
|
||
<view class="tjitem-check-wrap" wx:if = "{{iitem.showflag == 1}}" >
|
||
<van-checkbox disabled value="{{ disablecheck }}" bind:change="onCheckOptionChange" checked-color="#07c160" data-item-index="{{iindex}}"/>
|
||
</view>
|
||
|
||
</view>
|
||
<view class="tjitem-list" wx:if = "{{iitem.showflag == 0}}">{{iitem.itemname}}</view>
|
||
<view class="tjitem-list-disable" wx:if = "{{iitem.showflag == 1}}">{{iitem.itemname}}</view>
|
||
|
||
<view class="tjitem-right" wx:if = "{{iitem.showflag == 0}}" >¥{{iitem.itemprice}}</view>
|
||
<view class="tjitem-right-disable" wx:if = "{{iitem.showflag == 1}}" >¥{{iitem.itemprice}}</view>
|
||
</view>
|
||
|
||
</view>
|
||
|
||
|
||
|
||
</view>
|
||
|
||
<!-- 确保信息显示 -->
|
||
<view class="area">
|
||
<view class="area-header">
|
||
<view class="area-header-cont">
|
||
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="bottom-btn">
|
||
|
||
<view class="c" bindtap="addFast" >提交订单</view>
|
||
</view>
|