Browse Source

[Fix-4934][UI] Fix task statics info bug (#4935)

* ui statics info bug fix

Co-authored-by: 李巨丰 <lijf@2345.com>
pull/3/MERGE
JuFeng Li 3 years ago committed by GitHub
parent
commit
53aedc50ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/index/index.vue

2
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/index/index.vue

@ -98,6 +98,8 @@
this.searchParams.projectId = this.id === 0 ? 0 : localStore.getItem('projectId')
this.dataTime[0] = dayjs().format('YYYY-MM-DD 00:00:00')
this.dataTime[1] = dayjs().format('YYYY-MM-DD HH:mm:ss')
this.searchParams.startDate = this.dataTime[0]
this.searchParams.endDate = this.dataTime[1]
},
components: {
mListConstruction,

Loading…
Cancel
Save