diff --git a/workstation/frontend/src/business/component/CaseTableList.vue b/workstation/frontend/src/business/component/CaseTableList.vue index a68d4de14f..e9ecacad51 100644 --- a/workstation/frontend/src/business/component/CaseTableList.vue +++ b/workstation/frontend/src/business/component/CaseTableList.vue @@ -426,7 +426,7 @@ export default { } } else { if (this.condition.filters) { - this.condition.filters.review_status = ["Prepare", "Pass", "UnPass"]; + this.condition.filters.review_status = ["Prepare", "Underway", "Pass", "UnPass"]; } else { this.condition.filters = { review_status: ["Prepare", "Pass", "UnPass"], @@ -446,9 +446,9 @@ export default { activated() { this.getTemplateField(); if (this.condition.filters) { - this.condition.filters.review_status = ["Prepare", "Pass", "UnPass"]; + this.condition.filters.review_status = ["Prepare", "Underway", "Pass", "UnPass"]; } else { - this.condition.filters = { review_status: ["Prepare", "Pass", "UnPass"] }; + this.condition.filters = { review_status: ["Prepare", "Underway", "Pass", "UnPass"] }; } let ids = this.$route.params.ids; if (ids) { @@ -686,7 +686,7 @@ export default { this.condition.selectThisWeedData = false; this.condition.selectThisWeedRelevanceData = false; this.condition.caseCoverage = null; - this.condition.filters.review_status = ["Prepare", "Pass", "UnPass"]; + this.condition.filters.review_status = ["Prepare", "Underway", "Pass", "UnPass"]; switch (this.selectDataRange) { case "thisWeekCount": this.condition.selectThisWeedData = true;