actionplanList.axml 1005 B

1234567891011121314151617
  1. <view>
  2. <view class="performanceList">请选择记录"{{ Tit }}"的考核指标</view>
  3. <scroll-view class="scroll" a:if="{{backlogList.length>0}}" scroll-y="{{true}}" onScrollToLower="onScrollToLower">
  4. <view a:for="{{backlogList}}">
  5. <view class="backlog_list_tel fontColorC">{{ item.name }}</view>
  6. <view class="flex-box-ce van-cell" a:for="{{item.index}}" a:for-item="arr" data-item="{{arr}}" onTap="openPlanPath">
  7. <view class="flex-1">{{arr.name}}({{arr.weight}}%)</view>
  8. <view class="">
  9. <text class="num" a:if="{{knowFrom == 'action'&&arr.schedule.length>0}}">{{arr.schedule.length}}</text>
  10. <text class="num" a:if="{{knowFrom == 'admnin'&&arr.mamage_record.length>0}}">{{arr.mamage_record.length}}</text>
  11. <text class="iconfont icon-jiantouyou" style="margin-left:0.1rem;color:#969799;font-size:0.28rem;"></text>
  12. </view>
  13. </view>
  14. </view>
  15. </scroll-view>
  16. <no-data a:if="{{backlogList.length==0}}"></no-data>
  17. </view>