glz_execute.axml 1.8 KB

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