|
@@ -1021,13 +1021,13 @@
|
|
|
this.loading = true
|
|
|
// 如果【订单交货日期】有值
|
|
|
if (this.queryParams.timeRange) {
|
|
|
- this.queryParams.model.deliveryTime_st = this.queryParams.timeRange[0]
|
|
|
- this.queryParams.model.deliveryTime_ed = this.queryParams.timeRange[1]
|
|
|
+ this.queryParams.model.deliveryTime_st = this.queryParams.timeRange[0] + " 00:00:00"
|
|
|
+ this.queryParams.model.deliveryTime_ed = this.queryParams.timeRange[1] + " 23:59:59"
|
|
|
}
|
|
|
// 如果【零件交货日期】有值
|
|
|
if (this.queryParams.timeRange1) {
|
|
|
- this.queryParams.model.pdeliveryTimeStart = this.queryParams.timeRange1[0]
|
|
|
- this.queryParams.model.pdeliveryTimeEnd = this.queryParams.timeRange1[1]
|
|
|
+ this.queryParams.model.pdeliveryTimeStart = this.queryParams.timeRange1[0] + " 00:00:00"
|
|
|
+ this.queryParams.model.pdeliveryTimeEnd = this.queryParams.timeRange1[1] + " 23:59:59"
|
|
|
}
|
|
|
|
|
|
this.queryParams.current = params.current ? params.current : this.queryParams.current
|