diff --git a/src/views/purchase/purPlan/purPlanSearch.vue b/src/views/purchase/purPlan/purPlanSearch.vue index bce34a18..c62137d2 100644 --- a/src/views/purchase/purPlan/purPlanSearch.vue +++ b/src/views/purchase/purPlan/purPlanSearch.vue @@ -328,10 +328,10 @@ export default { this.filterQuery.endDate = null; } if (this.actAuditDateRange != null) { - this.filterQuery.starAuditDate = this.actAuditDateRange[0]; + this.filterQuery.startAuditDate = this.actAuditDateRange[0]; this.filterQuery.endAuditDate = this.actAuditDateRange[1]; } else { - this.filterQuery.starAuditDate = null; + this.filterQuery.startAuditDate = null; this.filterQuery.endAuditDate = null; } this.loading = true;