This commit is contained in:
shilixia 2021-04-28 14:18:05 +08:00
parent c26b10604f
commit 52c1ed13d9
1 changed files with 3 additions and 2 deletions

View File

@ -33,7 +33,7 @@
<el-table-column label="操作"> <el-table-column label="操作">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="warning" v-if=" <el-button type="warning" v-if="
scope.row.state == 待检查 scope.row.state == '待检查'
" "
@click="handleStartup(scope)">开始检查</el-button> @click="handleStartup(scope)">开始检查</el-button>
@ -347,7 +347,8 @@ export default {
handleStartup(scope){ handleStartup(scope){
gettaskdepstart(scope.row.id).then((res) => { gettaskdepstart(scope.row.id).then((res) => {
this.$message.success("提交成功"); this.$message.success("提交成功");
this.getinspectrecordlist();
this.getsubinspecttaskdep()
}) })
} }
}, },