Commit f46e1d0f authored by 高滢's avatar 高滢

feat(体系审查): 待办任务跳转查看

parent 2a23704a
...@@ -163,7 +163,13 @@ ...@@ -163,7 +163,13 @@
<div class="cell-lable">审查问卷</div> <div class="cell-lable">审查问卷</div>
<div class="cell-value"> <div class="cell-value">
<el-link <el-link
v-if="item.progress < 90" v-if="item.progress === 0"
type="primary"
@click="handleReviewForm"
>查看检查表单</el-link
>
<el-link
v-else-if="item.progress < 90"
type="primary" type="primary"
@click="handleReviewQuestionnaire" @click="handleReviewQuestionnaire"
>填写审查问卷</el-link >填写审查问卷</el-link
...@@ -312,6 +318,11 @@ export default { ...@@ -312,6 +318,11 @@ export default {
path: '/processing/write-check-form' path: '/processing/write-check-form'
}) })
}, },
handleReviewForm(){
this.$router.push({
path: '/processing/review-form'
})
},
handleConfirmFindings() { handleConfirmFindings() {
this.$router.push({ this.$router.push({
path: '/processing/confirm-result' path: '/processing/confirm-result'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment