tm-check-map-list.vue 572 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="content-wrap">
  3. <view class="title-wrap">
  4. <text>{{item.name}}</text>
  5. <view>
  6. <image src="../../static/icon-map.png"></image>
  7. <text>{{item.deptClassName}}</text>
  8. </view>
  9. </view>
  10. <view class="content">
  11. <text>包含{{item.pointCount || 0}}个查核要点,{{item.itemCount || 0}}个查核项目</text>
  12. <text>
  13. 要点概览:
  14. <text v-for="(point, c) in item.pointList" :key="c">
  15. {{point.name}};
  16. </text>
  17. </text>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. props: ['item']
  24. }
  25. </script>