12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view>
- <view class="{{popupCx}}">
- <view class="header margin-bottom">
- <view class="flex-box flex-v-ce tab" style="border-bottom:1px solid #f1f1f1">
- <view class="flex-1" catchTap="openDate">
- <text>{{date}}</text>
- </view>
- <view class="flex-1" catchTap="selectTissue">
- <text class="{{showTissue? 'activeView blue':''}}">{{TissueVal}}</text>
- </view>
- </view>
- <form onReset="onReset">
- <view style="margin:16rpx 0;padding-bottom:16rpx">
- <view class="search flex-box flex-v-ce">
- <image mode="scaleToFill" src="../../../image/ss.png" />
- <input class="flex-1" placeholder="人员搜索" onInput="bindKeyInput"/>
- <button a:if="{{isVal}}" class="delVal" formType="reset">×</button>
- </view>
- </view>
- </form>
- </view>
- <view class="main scroll">
- <scroll-view class="scroll" scroll-y="{{true}}" a:if="{{list.length>0}}" onScrollToLower="onScrollToLower">
- <view a:for="{{list}}" data-item="{{item}}" catchTap="openDetail" class="flex-box-ce item border-bottom" key="{{item.id}}">
- <view class="flex-1 flex-box-ce">
- <img-box name="{{item.name}}" imgUrl="{{item.img_url}}" height="80rpx" width="80rpx" fSize="24rpx"></img-box>
- <view class="users">
- <view class="name">{{item.name}}</view>
- <view class="dept_name font-flex-word">{{item.dept}}</view>
- </view>
- </view>
- <view class="blue" style="margin-right:28rpx;">{{item.count}}</view>
- </view>
- <view class="noDatas" a:if="{{isData}}">没有更多咯</view>
- </scroll-view>
- <no-data a:if="{{list.length==0}}"></no-data>
- </view>
- </view>
- <select-section isAll="{{true}}" selectIds="{{dept_ids}}" defaultSection="{{dept_id}}" a:if="{{showTissue==true}}" isShow="{{showTissue}}" onClose="onClose" onConfirm="onConfirmTissue"></select-section>
- </view>
|