|
@@ -157,11 +157,11 @@ export default {
|
|
|
tableHeight: 0,
|
|
|
queryParam: { // 查询条件
|
|
|
time: [
|
|
|
- getDate.getCurrMonthDays().starttime,
|
|
|
- getDate.getCurrMonthDays().endtime
|
|
|
+ getDate.getCurrMonthDays().starttime + ' 00:00:00',
|
|
|
+ getDate.getCurrMonthDays().endtime + ' 23:59:59'
|
|
|
],
|
|
|
- beginDate: getDate.getCurrMonthDays().starttime,
|
|
|
- endDate: getDate.getCurrMonthDays().endtime,
|
|
|
+ beginDate: getDate.getCurrMonthDays().starttime + ' 00:00:00',
|
|
|
+ endDate: getDate.getCurrMonthDays().endtime + ' 23:59:59',
|
|
|
salesBillNo: '',
|
|
|
dealerName: '',
|
|
|
dealerLevel: undefined,
|
|
@@ -258,12 +258,12 @@ export default {
|
|
|
// 重置
|
|
|
resetSearchForm () {
|
|
|
this.queryParam.time = [
|
|
|
- getDate.getCurrMonthDays().starttime,
|
|
|
- getDate.getCurrMonthDays().endtime
|
|
|
+ getDate.getCurrMonthDays().starttime + ' 00:00:00',
|
|
|
+ getDate.getCurrMonthDays().endtime + ' 23:59:59'
|
|
|
]
|
|
|
this.$refs.rangeDate.resetDate(this.queryParam.time)
|
|
|
- this.queryParam.beginDate = getDate.getCurrMonthDays().starttime
|
|
|
- this.queryParam.endDate = getDate.getCurrMonthDays().endtime
|
|
|
+ this.queryParam.beginDate = getDate.getCurrMonthDays().starttime + ' 00:00:00'
|
|
|
+ this.queryParam.endDate = getDate.getCurrMonthDays().endtime + ' 23:59:59'
|
|
|
this.queryParam.salesBillNo = ''
|
|
|
this.queryParam.dealerName = ''
|
|
|
this.queryParam.dealerLevel = undefined
|