awardTj.axml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view>
  2. <view class="{{popupCx}}">
  3. <view class="header margin-bottom">
  4. <view class="flex-box flex-v-ce tab" style="border-bottom:1px solid #f1f1f1">
  5. <view class="flex-1" catchTap="openDate">
  6. <text>{{date}}</text>
  7. </view>
  8. <view class="flex-1" catchTap="selectTissue">
  9. <text class="{{showTissue? 'activeView blue':''}}">{{TissueVal}}</text>
  10. </view>
  11. </view>
  12. <form onReset="onReset">
  13. <view style="margin:16rpx 0;padding-bottom:16rpx">
  14. <view class="search flex-box flex-v-ce">
  15. <image mode="scaleToFill" src="../../../image/ss.png" />
  16. <input class="flex-1" placeholder="人员搜索" onInput="bindKeyInput"/>
  17. <button a:if="{{isVal}}" class="delVal" formType="reset">×</button>
  18. </view>
  19. </view>
  20. </form>
  21. </view>
  22. <view class="main scroll">
  23. <scroll-view class="scroll" scroll-y="{{true}}" a:if="{{list.length>0}}" onScrollToLower="onScrollToLower">
  24. <view a:for="{{list}}" data-item="{{item}}" catchTap="openDetail" class="flex-box-ce item border-bottom" key="{{item.id}}">
  25. <view class="flex-1 flex-box-ce">
  26. <img-box name="{{item.name}}" imgUrl="{{item.img_url}}" height="80rpx" width="80rpx" fSize="24rpx"></img-box>
  27. <view class="users">
  28. <view class="name">{{item.name}}</view>
  29. <view class="dept_name font-flex-word">{{item.dept}}</view>
  30. </view>
  31. </view>
  32. <view class="blue" style="margin-right:28rpx;">{{item.count}}</view>
  33. </view>
  34. <view class="noDatas" a:if="{{isData}}">没有更多咯</view>
  35. </scroll-view>
  36. <no-data a:if="{{list.length==0}}"></no-data>
  37. </view>
  38. </view>
  39. <select-section isAll="{{true}}" selectIds="{{dept_ids}}" defaultSection="{{dept_id}}" a:if="{{showTissue==true}}" isShow="{{showTissue}}" onClose="onClose" onConfirm="onConfirmTissue"></select-section>
  40. </view>