From 2be178e4e4eea49cf848c69860056d4cea0cf887 Mon Sep 17 00:00:00 2001 From: zy <276996223@qq.com> Date: Tue, 18 Feb 2025 15:24:09 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E8=BF=94=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/task/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/task/index.vue b/src/views/task/index.vue index dfcd32d..924e95c 100644 --- a/src/views/task/index.vue +++ b/src/views/task/index.vue @@ -104,7 +104,7 @@ --> diff --git a/src/views/enterprises/update.vue b/src/views/enterprises/update.vue index ddf23a5..3be1d30 100644 --- a/src/views/enterprises/update.vue +++ b/src/views/enterprises/update.vue @@ -60,26 +60,17 @@ - - + + - - - + + + + 确定 - + + + + + + + + + + + +
+ + + + + + + + + + + + + +
+
+ diff --git a/src/views/task/create.vue b/src/views/task/create.vue index de4690d..74a8eea 100644 --- a/src/views/task/create.vue +++ b/src/views/task/create.vue @@ -413,7 +413,9 @@ async function submitForm() { const validate = await unref(formRef).validate() if (validate) { const data = JSON.parse(JSON.stringify(formData.value)) + //任务状态默认初始值1 data.status=1; + console.log("任务类型:",formData.value.taskType) data.enterpriseIds = formData.value.enterprises.map((i) => i.id) if(data.enterpriseIds.length==0){ message.success("温馨提示:请您选择执法对象")