From f31c5cabdffdd3fc843d948b43c1ecd4a84af9db Mon Sep 17 00:00:00 2001 From: zzyuan <781948537@qq.com> Date: Wed, 17 Dec 2025 15:49:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E9=97=AE=E9=A2=98=E4=BF=AE?= =?UTF-8?q?=E6=94=B93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../certificateTask/index.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/views/certificate/certificateReturnManage/certificateTask/index.vue b/src/views/certificate/certificateReturnManage/certificateTask/index.vue index b254e04..7e6edd7 100644 --- a/src/views/certificate/certificateReturnManage/certificateTask/index.vue +++ b/src/views/certificate/certificateReturnManage/certificateTask/index.vue @@ -320,7 +320,14 @@ }, // 表单校验 taskRules: { - processDate: [ + startTime: [ + { + required: true, + message: '核验开始日期不能为空', + trigger: 'blur', + }, + ], + endTime: [ { required: true, message: '核验截止日期不能为空', @@ -621,7 +628,8 @@ // 表单重置 resetTask() { this.taskForm = { - verificationDate:"" + startTime:"", + endTime:"" } this.resetForm('taskForm') },