From a4da5aa3bbed6111a4746453f3483e6d619533b1 Mon Sep 17 00:00:00 2001 From: danshihao Date: Mon, 25 Dec 2023 18:34:48 +0800 Subject: [PATCH] fix 79383 --- .../enterpriseStandardLibrary/check/CheckList.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/enterpriseStandardLibrary/check/CheckList.vue b/src/views/enterpriseStandardLibrary/check/CheckList.vue index 77bfc0bc..9ddb0bd8 100644 --- a/src/views/enterpriseStandardLibrary/check/CheckList.vue +++ b/src/views/enterpriseStandardLibrary/check/CheckList.vue @@ -353,16 +353,22 @@ export default { // 计划稽查日期改变 scheduledCheckDateChange (val) { if (val[0] && val[1]) { - this.queryParam.createDate = val.join(',') + this.queryParam.planInspectDates = val.join(',') + } else { + delete this.queryParam.planInspectDates } // this.queryParam.planInspectStartDate = val[0] // this.queryParam.planInspectEndDate = val[1] }, // 创建日期改变 createDateChange (val) { + if (val[0] && val[1]) { + this.queryParam.createDate = val.join(',') + } else { + delete this.queryParam.createDate + } // this.queryParam.inspectCreateStartDate = val[0] // this.queryParam.inspectCreateEndDate = val[1] - this.queryParam.createDate = val && val.join(',') }, // 点击跳转企标详情 handleGoDetail (record) {