glz_execute.axml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view>
  2. <view class="{{popupCx}}">
  3. <view class="flex-box flex-v-ce tab">
  4. <view class="flex-1" onTap="openDate">
  5. <text class="{{showDate? 'activeView':''}}">{{month}}</text>
  6. </view>
  7. <view class="flex-1" onTap="selectTissue">
  8. <text class="{{showTissue? 'activeView':''}}" a:if="{{tissueValName}}">{{tissueValName}}</text>
  9. </view>
  10. <view class="flex-1">
  11. <picker onChange="bindPickerChange" value="{{activeIndex}}" range="{{array}}" range-key="name">
  12. <text class="picker">{{array[activeIndex].name}}</text>
  13. </picker>
  14. </view>
  15. </view>
  16. <view class="flex-box flex-v-ce titles">
  17. <view class="flex-2" style="font-size:28rpx">管理者奖扣任务均为B分,对A分不做要求</view>
  18. <view class="flex-1">人均奖分(次)</view>
  19. <view class="flex-1">人均扣分(次)</view>
  20. </view>
  21. <view class="main scroll">
  22. <scroll-view scroll-y="{{true}}" class="scroll" a:if="{{list.length>0}}" onScrollToLower="onScrollToLower">
  23. <view catchTap="openDetail" data-item={{item}} class="flex-box flex-v-ce item border-bottom" a:for="{{list}}">
  24. <view class="flex-2 flex-box flex-v-ce">
  25. <img-box name="{{item.name}}" imgUrl="{{item.img_url}}" height="80rpx" width="80rpx" fSize="24rpx"></img-box>
  26. <view class="users">
  27. <view class="name">{{item.name}}</view>
  28. <view class="num">管理{{item.scope_count}}人</view>
  29. </view>
  30. </view>
  31. <view class="flex-1">{{item.reward_count}}</view>
  32. <view class="flex-1">{{item.deduct_count}}</view>
  33. </view>
  34. <view class="noDatas" a:if="{{isData}}">没有更多咯</view>
  35. </scroll-view>
  36. <no-data a:if="{{list.length==0}}" content="未找到考勤组"></no-data>
  37. </view>
  38. </view>
  39. <select-section defaultSection="{{tissueVal}}" isShow="{{showTissue}}" a:if="{{showTissue==true}}" onClose="onClose" onConfirm="onConfirmTissue"></select-section>
  40. </view>