| | |
| | | <el-row> |
| | | <TaskItem v-for="item in tasks" :key="item.guid" v-bind="item"></TaskItem> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="12"> |
| | | <SelfInspection></SelfInspection> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <JointEnforcement></JointEnforcement> |
| | | </el-col> |
| | | </el-row> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import SelfInspection from '@/views/inspection/SelfInspection.vue' |
| | | import JointEnforcement from '@/views/inspection/JointEnforcement.vue' |
| | | |
| | | /** |
| | | * 任务完成情况 |
| | | */ |
| | | export default { |
| | | components: { SelfInspection, JointEnforcement }, |
| | | data() { |
| | | return { |
| | | tasks: [] |