my_apply.axml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <view>
  2. <view class="header margin-bottom">
  3. <form onReset="onReset">
  4. <view class="search flex-box flex-v-ce">
  5. <image mode="scaleToFill" src="../../../image/ss.png"></image>
  6. <input placeholder="请输入姓名或事件内容搜索" onInput="bindKeyInput" class="flex-1"></input>
  7. <button a:if="{{isVal}}" class="delVal" formType="reset">×</button>
  8. </view>
  9. </form>
  10. <view class="flex-box flex-v-ce selectItems border-bottom">
  11. <view data-index="3" class="{{activeIndex == 3? 'active':''}} flex-1" catchTap="activeItem">待审批</view>
  12. <view data-index="2" class="{{activeIndex == 2? 'active':''}} flex-1" catchTap="activeItem">已通过</view>
  13. <view data-index="4" class="{{activeIndex == 4? 'active':''}} flex-1" catchTap="activeItem">被驳回</view>
  14. <view data-index="1" class="{{activeIndex == 1? 'active':''}} flex-1" catchTap="activeItem">已复核</view>
  15. </view>
  16. </view>
  17. <view class="orangeText" a:if="{{config.event_review_status==1&&config.event_apply_review==1}}">复核开启后,积分需管理员复核后才计入排名和统计</view>
  18. <view class="main scroll">
  19. <scroll-view class="scroll" style="{{(config.event_review_status==1&&config.event_apply_review==1)?'height: calc(100vh - 2.68rem)':''}}" a:if="{{list.length>0}}" scroll-y="{{true}}" onScrollToLower="onScrollToLower">
  20. <view class="flex-box li border-bottom" catchTap="openDetail" a:for="{{list}}" data-item="{{item}}" key="{{item.id}}">
  21. <view class="flex-1 main-right">
  22. <view class="flex-box">
  23. <view class="name flex-1" style="margin-right: 10rpx;">{{item.remark.customize || item.remark.rule}}</view>
  24. <block a:if="{{activeIndex==1}}">
  25. <view class="red" a:if="{{item.point > 0}}">+{{item.point}} {{item.pt_name}}</view>
  26. <view class="green" a:else>{{item.point}} {{item.pt_name}}</view>
  27. </block>
  28. <block a:else>
  29. <view class="red" a:if="{{item.review_point > 0}}">+{{item.review_point}} {{item.pt_name}}</view>
  30. <view class="green" a:else>{{item.point}} {{item.pt_name}}</view>
  31. </block>
  32. </view>
  33. <view class="flex-box flex-v-ce">
  34. <view class="date flex-1">{{item.event_time}}</view>
  35. <view class="yellowBox" a:if="{{item.status == 0}}">待审批</view>
  36. <view class="greenBox" a:if="{{item.status == 1}}">申请成功</view>
  37. <view class="redBox" a:if="{{item.status == 2}}">被驳回</view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="noDatas" a:if="{{isData}}">没有更多咯</view>
  42. </scroll-view>
  43. <no-data a:if="{{list.length==0}}"></no-data>
  44. </view>
  45. </view>