From 831816bbcfd74d6913efb4bfd6b82cc4dc7b09b4 Mon Sep 17 00:00:00 2001 From: luojie <125330818@qq.com> Date: Tue, 3 Feb 2026 16:31:39 +0800 Subject: [PATCH] =?UTF-8?q?feat:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86][upd?= =?UTF-8?q?ate]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Template/StepFormPackage.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Template/StepFormPackage.vue b/src/components/Template/StepFormPackage.vue index 34b5799..dfb88f2 100644 --- a/src/components/Template/StepFormPackage.vue +++ b/src/components/Template/StepFormPackage.vue @@ -187,9 +187,9 @@ export default { const {buttonName = ""} = e; const {config} = item; if(buttonName === '开始' && config.hasOwnProperty("startDate")){ - this.updateFormData("startDate",moment().format('YYYY-MM-DD HH:mm:ss')) + this.updateFormData("startDate",moment().format('YYYY-MM-DD HH:mm')) }else if(buttonName === '结束' && config.hasOwnProperty("endDate")){ - this.updateFormData("endDate",moment().format('YYYY-MM-DD HH:mm:ss')) + this.updateFormData("endDate",moment().format('YYYY-MM-DD HH:mm')) } this.$emit("clickButton",e,item) },