helper.tsx
1.5 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
import { defineComponent, h, ref } from 'vue';
import { Modal } from 'ant-design-vue';
import dayjs from 'dayjs';
import duration from 'dayjs/plugin/duration';
import relativeTime from 'dayjs/plugin/relativeTime';
import ApprovalContent from './approval-content.vue';
export interface ApproveWithReasonModalProps {
title: string;
description: string;
onOk: (reason: string) => void;
}
/**
* 带审批意见的confirm
* @param props props
*/
export function approveWithReasonModal(props: ApproveWithReasonModalProps) {
const { onOk, title, description } = props;
const content = ref('');
Modal.confirm({
title,
content: h(
defineComponent({
setup() {
return () =>
h(ApprovalContent, {
description,
value: content.value,
'onUpdate:value': (v) => (content.value = v),
});
},
}),
),
centered: true,
okButtonProps: { danger: true },
onOk: () => onOk(content.value),
});
}
dayjs.extend(duration);
dayjs.extend(relativeTime);
/**
* 计算相差的时间
* @param dateTime 时间字符串
* @returns 相差的时间
*/
export function getDiffTimeString(dateTime: string) {
// 计算相差秒数
const diffSeconds = dayjs().diff(dayjs(dateTime), 'second');
/**
* 转为时间显示(x月 x天)
* https://dayjs.fenxianglu.cn/category/duration.html#%E4%BA%BA%E6%80%A7%E5%8C%96
*
*/
const diffText = dayjs.duration(diffSeconds, 'seconds').humanize();
return diffText;
}