diff --git a/src/components/common/TimeRange/DateTimeRange.vue b/src/components/common/TimeRange/DateTimeRange.vue index dd37d999..5570a4d6 100644 --- a/src/components/common/TimeRange/DateTimeRange.vue +++ b/src/components/common/TimeRange/DateTimeRange.vue @@ -3,9 +3,9 @@
-
{{ dayJs.tz(startTime).format('YYYY-MM-DD HH:mm:ss') }}
+
{{ dateFormatByAppearance(startTime) }}
-
-
{{ dayJs.tz(endTime).format('YYYY-MM-DD HH:mm:ss') }}
+
{{ dateFormatByAppearance(endTime) }}
{{ showDetail }} @@ -33,11 +33,11 @@ />
From
- {{ dayJs.tz(myStartTime).format('YYYY-MM-DD HH:mm:ss') }} + {{ dateFormatByAppearance(myStartTime) }}
To
- {{ dayJs.tz(myEndTime).format('YYYY-MM-DD HH:mm:ss') }} + {{ dateFormatByAppearance(myEndTime) }}
Apply time range @@ -46,9 +46,9 @@
- {{ dayJs.tz(item.start).format('YYYY-MM-DD HH:mm:ss') }} + {{ dateFormatByAppearance(item.start) }} — - {{ dayJs.tz(item.end).format('YYYY-MM-DD HH:mm:ss') }} + {{ dateFormatByAppearance(item.end) }}
diff --git a/src/components/table/report/builtinReportTable.vue b/src/components/table/report/builtinReportTable.vue index ff172a9f..b52cc939 100644 --- a/src/components/table/report/builtinReportTable.vue +++ b/src/components/table/report/builtinReportTable.vue @@ -34,7 +34,7 @@