init version kelfy-mini for new gitea
This commit is contained in:
119
pages/kfdj/kfdj.wxml
Normal file
119
pages/kfdj/kfdj.wxml
Normal file
@@ -0,0 +1,119 @@
|
||||
<!--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>
|
||||
|
||||
Reference in New Issue
Block a user