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