1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import moment from 'moment'
|
| // 设置语言为中文
| moment.locale('zh-cn')
|
| /**
| * @param {number} hours
| */
| export function getDateAfterHours(hours) {
| const now = new Date()
| return new Date(now.setHours(now.getHours() + hours))
| }
| /**
| * @param {number} days
| */
| export function getDateAfterDays(days) {
| const now = new Date()
| return new Date(now.setHours(now.getHours() + days * 24))
| }
|
|