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) {