customRamking.axml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <view>
  2. <view class="all">
  3. <!-- <block> -->
  4. <block a:if="{{dataList.length>0}}">
  5. <!-- <view class="gs margin-bottom flex-box flex-v-ce" a:if="{{isShowGs}}">
  6. <text class="flex-1">可自定义设置团队、项目、管理者、执行人员等分组,进行自定义排名</text>
  7. <text class="close" onTap="activeGs">×</text>
  8. </view> -->
  9. <!-- <block> -->
  10. <!-- <view class="add flex-box flex-v-ce margin-bottom" onTap="openAdd">
  11. <view class="flex-1 blue">+新增分组</view>
  12. </view> -->
  13. <view class="main">
  14. <view a:for="{{dataList}}" class="dataList margin-bottom">
  15. <view class="flex-box flex-v-ce message border-bottom">
  16. <view class="flex-1">
  17. <view class="title">{{item.name}}</view>
  18. <!-- <view class="num fontColorB">共{{item.employees.length}}人参与排名</view> -->
  19. </view>
  20. <!-- <view onTap="openCompile" class="openCompile" data-item="{{item}}">
  21. <image mode="scaleToFill" src="../../../image/Bj.png" style="width:40rpx;height:40rpx"></image>
  22. </view> -->
  23. </view>
  24. <view class="flex-box flex-v-ce ranking" onTap="openDetail" data-item="{{item}}">
  25. <view class="flex-1">查看排名</view>
  26. <image mode="scaleToFill" src="../../../image/right.png"></image>
  27. </view>
  28. </view>
  29. </view>
  30. </block>
  31. <view a:else class="noDataBox">
  32. <view class="noDataTop fontColorB">
  33. <view>暂无分组</view>
  34. <view>通过分组你可针对性的查看对应人员的B分排名</view>
  35. </view>
  36. <button type="default" onTap="openAdd" class="addBtn">新建分组</button>
  37. </view>
  38. </view>
  39. </view>