From f91a4f520b0741aff7af1d6515ecda41045a51a2 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Mon, 23 Oct 2023 13:47:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A5=E8=82=A1=E7=94=B2=E6=96=B9=E5=85=AC?= =?UTF-8?q?=E5=8F=B8=E6=96=B0=E5=A2=9E=E7=9B=AE=E6=A0=87=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/examined/components/audit_other.vue | 1 + src/views/task_template/edit_village.vue | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/examined/components/audit_other.vue b/src/views/examined/components/audit_other.vue index b786e44..5f40a26 100644 --- a/src/views/examined/components/audit_other.vue +++ b/src/views/examined/components/audit_other.vue @@ -194,6 +194,7 @@ const formData = reactive({ check_status: 1, remark: "", }); + // 表单验证 const formRules = reactive({ check_status: [ diff --git a/src/views/task_template/edit_village.vue b/src/views/task_template/edit_village.vue index c5bb725..ed75725 100644 --- a/src/views/task_template/edit_village.vue +++ b/src/views/task_template/edit_village.vue @@ -263,7 +263,11 @@ if (route.query.id) { } // 显示目标数的任务类型 -const showTargetTypeList = ["village_task_type_1", "village_task_type_4"]; +const showTargetTypeList = [ + "village_task_type_1", + "village_task_type_4", + "village_task_type_5" +]; const showTarget = computed(() => { let flag = false; if (showTargetTypeList.includes(formData.type_value)) flag = true;