Files
kelfy-mini/pages/tjsm/tjsm.wxml
terry.wang ecf417b189 1.更新了体检上门
2.修复自费成功页面无法隐藏加载中页面问题
2025-11-28 16:20:48 +08:00

120 lines
4.7 KiB
Plaintext

<!--index.wxml-->
<!-- <view class="banner">
<swiper indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" indicator-dots="true" circular="true">
<block wx:for="{{imgUrls}}" wx:key="item">
<swiper-item>
<image src="{{item}}{{item.IMG}}" class="slide-image" />
</swiper-item>
</block>
</swiper>
</view> -->
<view class="wrap">
<view class="service">
<icon></icon>
<text>当前批次</text>
</view>
<view class = "rwempty" wx:if = "{{ rwempty }}" >{{ rwname }}</view>
<!-- <view class = "pickempty" wx:if = "{{ rwempty }}" >{{ rwstatus }}</view> -->
<view class = "rwempty" wx:if = "{{ !rwempty }}" >当前无任务</view>
<view class="rwtips" wx:if = "{{ rwempty }}" >
<text>请点击体检人确定体检项目</text>
</view>
</view>
<view class="main">
<view class="content">
<loading hidden="{{loadingHidden}}">加载中...</loading>
<view wx:if="{{loadingHidden}}">
<view wx:if="{{flag == true}}">
<view class="studentitem" wx:for="{{list}}" wx:key="item" data-item="{{item}}" >
<view class="up" data-index="{{item}}" bindtap="naviToDet" >
<view class="name">{{item.name}}</view>
<view class="msg">
<view class="t1"></view>
<view class="icon" wx:if="{{item.feeflag == 0 || item.feeflag == null}}">
<view class="nofee" >未缴费</view>
</view>
<view class="icon" wx:else>
<view class="mr" >已缴费</view>
</view>
</view>
</view>
<view class="down" data-index="{{item}}" bindtap="naviToInfo">
<view>{{item.nationId}}</view>
<view class="msg">
<view class="t1"></view>
<view class="icon" wx:if="{{item.feeflag == 1}}">
<view class="detail" >查看详情</view>
</view>
</view>
</view>
</view>
</view>
<view wx:else="{{flag == false}}" class="zw">暂无体检人信息,请点击下方“添加体检人”按钮,确认体检人信息!</view>
<view class="btn" bindtap="naviToAdd">添加体检人</view>
</view>
</view>
<view
class="actionsheet"
hidden="{{!actionsheetVisible}}">
<view class="actionsheet-mask" bindtap="handleActionsheet"></view>
<scroll-view scroll-y class="actionsheet-panel">
<view class="actionsheet-hd">
<view class="actionsheet-hd-tt">缴费明细</view>
<icon class="actionsheet-icon-close" bindtap="handleActionsheet"></icon>
</view>
<view class="actionsheet-bd">
<view
class="actionsheet-box"
>
<!-- wx:for="{{prescriptionList}}" -->
<!-- wx:key="title" -->
<view class="actionsheet-box-hd" wx:if="{{listStand.length !=0}}">基本项目</view>
<!-- <view class="actionsheet-box-hd">{{item.title}}</view> -->
<view class="actionsheet-box-bd" wx:if="{{listStand.length !=0}}">
<view
class="actionsheet-box-item"
wx:for="{{listStand}}"
wx:key='item'
wx:for-item="items"
>
<view class="actionsheet-box-item-label-wrap">
<view class="actionsheet-box-item-label">{{items.itemname}}</view>
</view>
<view class="actionsheet-box-item-value">{{items.itemprice}}</view>
<!-- <view
class="actionsheet-box-item-value {{boxItem.highlight ? 'em' : ''}}">{{boxItem.xmje}}</view> -->
</view>
</view>
<view class="actionsheet-box-hd" wx:if="{{listAddtion.length !=0}}">可选项目</view>
<!-- <view class="actionsheet-box-hd">{{item.title}}</view> -->
<view class="actionsheet-box-bd" wx:if="{{listAddtion.length !=0}}">
<view
class="actionsheet-box-item"
wx:for="{{listAddtion}}"
wx:key='item'
wx:for-item="items"
>
<view class="actionsheet-box-item-label-wrap">
<view class="actionsheet-box-item-label">{{items.itemname}}</view>
</view>
<view class="actionsheet-box-item-value">{{items.itemprice}}</view>
<!-- <view
class="actionsheet-box-item-value {{boxItem.highlight ? 'em' : ''}}">{{boxItem.xmje}}</view> -->
</view>
</view>
</view>
</view>
</scroll-view>
</view>
</view>