|
@@ -53,21 +53,22 @@
|
|
|
<el-table-column prop="checkCycle" label="排查周期" width="150"></el-table-column>
|
|
|
<el-table-column prop="checkRange" label="排查范围" width="150"></el-table-column>
|
|
|
<el-table-column prop="executionDate" label="执行日期" width="150"></el-table-column>
|
|
|
- <el-table-column prop="completed" label="已完成" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="completed" label="已完成" width="100">
|
|
|
<template #default="scope">
|
|
|
<span @click="handleClick(scope.row.completed, 'completed')">{{ scope.row.completed }}</span>
|
|
|
</template>
|
|
|
- <el-table-column prop="uncompleted" label="未完成" width="100"></el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="uncompleted" label="未完成" width="100">
|
|
|
<template #default="scope">
|
|
|
<span @click="handleClick(scope.row.uncompleted, 'uncompleted')">{{ scope.row.uncompleted }}</span>
|
|
|
</template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" width="150">
|
|
|
<template #default="scope">
|
|
|
<el-button size="small" @click="handleresult(scope.$index, scope.row)">巡查结果</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
-
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 修改弹窗 -->
|
|
@@ -117,7 +118,6 @@ const goBack = () => {
|
|
|
proxy?.$tab.closePage();
|
|
|
};
|
|
|
|
|
|
-
|
|
|
const route = useRoute();
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
const { mm_event_type, plan_type } = toRefs<any>(proxy?.useDict('plan_type', 'mm_event_type'));
|