From 761dc97c8ac017e5d57b331f7bcf3cfaf1ca1159 Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Fri, 08 Nov 2024 15:44:06 +0800 Subject: [PATCH] fix: 无人机轨迹修改 --- src/views/toCarryOutLegislativeReforms/components/queryForm.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/toCarryOutLegislativeReforms/components/queryForm.vue b/src/views/toCarryOutLegislativeReforms/components/queryForm.vue index 3b2e88e..83a74d8 100644 --- a/src/views/toCarryOutLegislativeReforms/components/queryForm.vue +++ b/src/views/toCarryOutLegislativeReforms/components/queryForm.vue @@ -172,8 +172,8 @@ this.formData.isInvalid = 0 this.getContaminateList() if (Object.entries(this.initializationData).length !== 0) { - this.formData.startTime = this.initializationData.startTime - this.formData.endTime = this.initializationData.endTime + this.$set(this.formData, 'startTime', this.initializationData.startTime) + this.$set(this.formData, 'endTime', this.initializationData.endTime) // total ������������ unComplete ��������� complete ��������� overdue ������ if (this.initializationData.type === 'total') { this.formData.state = [] @@ -183,7 +183,7 @@ this.formData.state = [40] } else if (this.initializationData.type === 'overdue') { this.formData.state = [] - this.formData.changeType = 2 + this.$set(this.formData, 'changeType', 2) } } }, -- Gitblit v1.8.0