|
@@ -237,8 +237,8 @@ export default {
|
|
loadData: parameter => {
|
|
loadData: parameter => {
|
|
const searchData = Object.assign(parameter, this.queryParam)
|
|
const searchData = Object.assign(parameter, this.queryParam)
|
|
if (this.time && this.time.length) {
|
|
if (this.time && this.time.length) {
|
|
- searchData.beginDate = moment(this.time[0]).format('YYYY-MM-DD')
|
|
|
|
- searchData.endDate = moment(this.time[1]).format('YYYY-MM-DD')
|
|
|
|
|
|
+ searchData.beginDate = moment(this.time[0]).format('YYYY-MM-DD 00:00:00')
|
|
|
|
+ searchData.endDate = moment(this.time[1]).format('YYYY-MM-DD 00:00:00')
|
|
} else {
|
|
} else {
|
|
searchData.beginDate = ''
|
|
searchData.beginDate = ''
|
|
searchData.endDate = ''
|
|
searchData.endDate = ''
|
|
@@ -348,8 +348,8 @@ export default {
|
|
handleExport () {
|
|
handleExport () {
|
|
const params = this.queryParam
|
|
const params = this.queryParam
|
|
if (this.time && this.time.length) {
|
|
if (this.time && this.time.length) {
|
|
- params.beginDate = moment(this.time[0]).format('YYYY-MM-DD')
|
|
|
|
- params.endDate = moment(this.time[1]).format('YYYY-MM-DD')
|
|
|
|
|
|
+ params.beginDate = moment(this.time[0]).format('YYYY-MM-DD 00:00:00')
|
|
|
|
+ params.endDate = moment(this.time[1]).format('YYYY-MM-DD 00:00:00')
|
|
} else {
|
|
} else {
|
|
params.beginDate = ''
|
|
params.beginDate = ''
|
|
params.endDate = ''
|
|
params.endDate = ''
|
|
@@ -411,8 +411,8 @@ export default {
|
|
getListTotal () {
|
|
getListTotal () {
|
|
const params = this.queryParam
|
|
const params = this.queryParam
|
|
if (this.time && this.time.length) {
|
|
if (this.time && this.time.length) {
|
|
- params.beginDate = moment(this.time[0]).format('YYYY-MM-DD')
|
|
|
|
- params.endDate = moment(this.time[1]).format('YYYY-MM-DD')
|
|
|
|
|
|
+ params.beginDate = moment(this.time[0]).format('YYYY-MM-DD 00:00:00')
|
|
|
|
+ params.endDate = moment(this.time[1]).format('YYYY-MM-DD 00:00:00')
|
|
} else {
|
|
} else {
|
|
params.beginDate = ''
|
|
params.beginDate = ''
|
|
params.endDate = ''
|
|
params.endDate = ''
|