index.vue
4.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<script setup lang="ts">
import { Button, Popover, Select, Switch, InputNumber } from 'ant-design-vue';
import { reactive, ref, unref } from 'vue';
import {
DateShortcutOptionEnum,
getShortcutOptionValue,
latestOptions,
shortcutOptions,
} from './config';
import { getPopupContainer } from '/@/utils';
import { dateUtil } from '/@/utils/dateUtil';
const emit = defineEmits<{
(eventName: 'change', date: moment.Moment[]): void;
}>();
const mode = ref(false);
const latestPopoverVisible = ref(false);
const latestSelect = ref();
const advancedLatest = reactive({
days: 0,
hours: 0,
minutes: 0,
seconds: 0,
});
const getAdvancedLatest = () => {
const startDate = Object.keys(advancedLatest).reduce((prev, next) => {
return prev.subtract(advancedLatest[next], next);
}, dateUtil());
return [startDate, dateUtil()];
};
const getLatestSelect = () => {
const selected = latestOptions.find((item) => item.value === unref(latestSelect))!;
if (!selected) return [];
const startDate = dateUtil().subtract(selected.unitValue, selected.unit);
return [startDate, dateUtil()];
};
const handleUpdateDate = () => {
emit('change', unref(mode) ? getAdvancedLatest() : getLatestSelect());
latestPopoverVisible.value = false;
};
const shortcutOptionPopoverVisible = ref(false);
const shortcutOptionSelect = ref<DateShortcutOptionEnum>();
const handleShortcutOptionUpdate = () => {
unref(shortcutOptionSelect) &&
emit('change', getShortcutOptionValue(unref(shortcutOptionSelect)!));
shortcutOptionPopoverVisible.value = false;
};
</script>
<template>
<section class="h-full items-center flex gap-2 h-9">
<Popover
v-model:visible="latestPopoverVisible"
trigger="click"
:overlayStyle="{ zIndex: 9999 }"
overlayClassName="range-picker-extra-latest-popover"
>
<template #content>
<main class="w-90 p-4">
<div class="flex gap-3 items-end">
<div v-if="!mode" class="w-full">
<Select
v-model:value="latestSelect"
class="w-full border-b"
:getPopupContainer="getPopupContainer"
placeholder="请选择区间"
:bordered="false"
:options="latestOptions"
/>
</div>
<div v-if="mode" class="w-full flex gap-1">
<div class="w-1/4">
<div>天</div>
<InputNumber v-model:value="advancedLatest.days" :min="0" :precision="0" />
</div>
<div class="w-1/4">
<div>小时</div>
<InputNumber v-model:value="advancedLatest.hours" :min="0" :precision="0" />
</div>
<div class="w-1/4">
<div>分钟</div>
<InputNumber v-model:value="advancedLatest.minutes" :min="0" :precision="0" />
</div>
<div class="w-1/4">
<div>秒</div>
<InputNumber v-model:value="advancedLatest.seconds" :min="0" :precision="0" />
</div>
</div>
<div>
<div class="h-6 text-center">高级</div>
<Switch v-model:checked="mode" />
</div>
</div>
<div class="w-full flex mt-4 gap-4 justify-end">
<Button size="small" @click="latestPopoverVisible = false"> 取消</Button>
<Button size="small" type="primary" @click="handleUpdateDate"> 更新</Button>
</div>
</main>
</template>
<Button type="primary" size="small" @click="latestPopoverVisible = true">最后</Button>
</Popover>
<Popover
v-model:visible="shortcutOptionPopoverVisible"
trigger="click"
:overlayStyle="{ zIndex: 9999 }"
overlayClassName="range-picker-extra-shortcut-popover"
>
<template #content>
<main class="w-90 p-4">
<div>
<Select
v-model:value="shortcutOptionSelect"
class="w-full border-b"
:getPopupContainer="getPopupContainer"
placeholder="请选择区间"
:bordered="false"
:options="shortcutOptions"
/>
</div>
<div class="w-full flex mt-4 gap-4 justify-end">
<Button size="small" @click="shortcutOptionPopoverVisible = false"> 取消</Button>
<Button size="small" type="primary" @click="handleShortcutOptionUpdate"> 更新</Button>
</div>
</main>
</template>
<Button type="primary" size="small" @click="shortcutOptionPopoverVisible = true">
快捷选择
</Button>
</Popover>
</section>
</template>
<style lang="less">
.range-picker-extra-latest-popover {
.ant-input-number {
min-width: fit-content;
width: 100%;
}
}
</style>