From 7cd3e5e36945af661d1499c7c5da769b44eff8ce Mon Sep 17 00:00:00 2001 From: danshihao Date: Tue, 19 Dec 2023 09:47:05 +0800 Subject: [PATCH] fix 79430 --- src/views/enterpriseStandardLibrary/check/CheckList.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/enterpriseStandardLibrary/check/CheckList.vue b/src/views/enterpriseStandardLibrary/check/CheckList.vue index d5e6727a..515d7ea0 100644 --- a/src/views/enterpriseStandardLibrary/check/CheckList.vue +++ b/src/views/enterpriseStandardLibrary/check/CheckList.vue @@ -352,8 +352,11 @@ export default { }, // 计划稽查日期改变 scheduledCheckDateChange (val) { - this.queryParam.planInspectStartDate = val[0] - this.queryParam.planInspectEndDate = val[1] + if (val[0] && val[1]) { + this.queryParam.createDate = val.join(',') + } + // this.queryParam.planInspectStartDate = val[0] + // this.queryParam.planInspectEndDate = val[1] }, // 创建日期改变 createDateChange (val) {