customDetail.axml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view>
  2. <view class="flex-box flex-v-ce tab">
  3. <view class="flex-1" catchTap="selectDate">
  4. <text class="dateVal">{{month}}</text>
  5. </view>
  6. <view class="flex-1" catchTap="selectRule">
  7. <text class="{{showRuleTwo? 'activeView blue':''}}">{{ruleVal}}</text>
  8. </view>
  9. <view class="flex-1" catchTap="selectIsPx">
  10. <text a:if="{{isPx}}">降序</text>
  11. <text a:else>升序</text>
  12. </view>
  13. </view>
  14. <view class="fontColorF" style="font-szie:20rpx;padding:10rpx 28rpx;">排名包含初始分和工龄分</view>
  15. <view class="main">
  16. <scroll-view scroll-y="{{true}}">
  17. <view a:for="{{[1,2,3,4,4,6,5,5,5,5]}}" catchTap="openDetail" data-item="{{item}}" class="flex-box flex-v-ce item border-bottom">
  18. <view a:if="{{index==0}}" class="index">
  19. <image mode="scaleToFill" src="../../../image/activeSet.png"></image>
  20. </view>
  21. <view a:elif="{{index==1}}" class="index">
  22. <image mode="scaleToFill" src="../../../image/activeSet.png"></image>
  23. </view>
  24. <view a:elif="{{index==2}}" class="index">
  25. <image mode="scaleToFill" src="../../../image/activeSet.png"></image>
  26. </view>
  27. <view a:else class="index">{{index}}</view>
  28. <view class="flex-1 flex-box flex-v-ce">
  29. <img-box name="测试赛" height="70rpx" width="70rpx" fSize="24rpx"></img-box>
  30. <view class="users">
  31. <view class="name">武丈</view>
  32. <view class="num">管理15人</view>
  33. </view>
  34. </view>
  35. <view class="blue" style="margin-right:28rpx;">23</view>
  36. </view>
  37. </scroll-view>
  38. </view>
  39. <select-rule-two isShow="{{showRuleTwo}}" a:if="{{showRuleTwo==true}}" onClose="onClose" onConfirm="onConfirmRule"></select-rule-two>
  40. </view>