|
@@ -41,6 +41,7 @@
|
|
|
start-placeholder="开始日期"
|
|
start-placeholder="开始日期"
|
|
|
end-placeholder="结束日期"
|
|
end-placeholder="结束日期"
|
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
|
|
+ :shortcuts="rangeShortcuts"
|
|
|
class="!w-220px"
|
|
class="!w-220px"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -374,6 +375,103 @@ import { DICT_TYPE } from '@/utils/dict'
|
|
|
import { ref, reactive, onMounted, onUnmounted } from 'vue'
|
|
import { ref, reactive, onMounted, onUnmounted } from 'vue'
|
|
|
import DeptTree2 from '@/views/pms/iotrhdailyreport/DeptTree2.vue'
|
|
import DeptTree2 from '@/views/pms/iotrhdailyreport/DeptTree2.vue'
|
|
|
import { useDebounceFn } from '@vueuse/core'
|
|
import { useDebounceFn } from '@vueuse/core'
|
|
|
|
|
+import quarterOfYear from 'dayjs/plugin/quarterOfYear'
|
|
|
|
|
+import dayjs from 'dayjs'
|
|
|
|
|
+
|
|
|
|
|
+dayjs.extend(quarterOfYear)
|
|
|
|
|
+
|
|
|
|
|
+const rangeShortcuts = [
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '今天',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ const today = dayjs()
|
|
|
|
|
+ return [today.startOf('day').toDate(), today.endOf('day').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '昨天',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ const yesterday = dayjs().subtract(1, 'day')
|
|
|
|
|
+ return [yesterday.startOf('day').toDate(), yesterday.endOf('day').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '本周',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().startOf('week').toDate(), dayjs().endOf('week').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '上周',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ const lastWeek = dayjs().subtract(1, 'week')
|
|
|
|
|
+ return [lastWeek.startOf('week').toDate(), lastWeek.endOf('week').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '本月',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().startOf('month').toDate(), dayjs().endOf('month').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '上月',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ const lastMonth = dayjs().subtract(1, 'month')
|
|
|
|
|
+ return [lastMonth.startOf('month').toDate(), lastMonth.endOf('month').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '本季度',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().startOf('quarter').toDate(), dayjs().endOf('quarter').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '上季度',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ const lastQuarter = dayjs().subtract(1, 'quarter')
|
|
|
|
|
+ return [lastQuarter.startOf('quarter').toDate(), lastQuarter.endOf('quarter').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '今年',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().startOf('year').toDate(), dayjs().endOf('year').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '去年',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ const lastYear = dayjs().subtract(1, 'year')
|
|
|
|
|
+ return [lastYear.startOf('year').toDate(), lastYear.endOf('year').toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '最近7天',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().subtract(6, 'day').toDate(), dayjs().toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '最近30天',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().subtract(29, 'day').toDate(), dayjs().toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '最近90天',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().subtract(89, 'day').toDate(), dayjs().toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ text: '最近一年',
|
|
|
|
|
+ value: () => {
|
|
|
|
|
+ return [dayjs().subtract(1, 'year').toDate(), dayjs().toDate()]
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+]
|
|
|
|
|
|
|
|
/** 瑞恒日报 列表 */
|
|
/** 瑞恒日报 列表 */
|
|
|
defineOptions({ name: 'IotRhDailyReport' })
|
|
defineOptions({ name: 'IotRhDailyReport' })
|