1234567891011121314151617181920212223242526 |
- <template>
- <view class="content-wrap">
- <view class="title-wrap">
- <text>{{item.name}}</text>
- <view>
- <image src="../../static/icon-map.png"></image>
- <text>{{item.deptClassName}}</text>
- </view>
- </view>
- <view class="content">
- <text>包含{{item.pointCount || 0}}个查核要点,{{item.itemCount || 0}}个查核项目</text>
- <text>
- 要点概览:
- <text v-for="(point, c) in item.pointList" :key="c">
- {{point.name}};
- </text>
- </text>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: ['item']
- }
- </script>
|