ragflow / web /src /utils /date.ts
balibabu
feat: layout the knowledge list page and modify the page switching button in the header (#48)
af3ef26
raw
history blame
396 Bytes
import moment from 'moment';
export function today() {
return formatDate(moment());
}
export function lastDay() {
return formatDate(moment().subtract(1, 'days'));
}
export function lastWeek() {
return formatDate(moment().subtract(1, 'weeks'));
}
export function formatDate(date: any) {
if (!date) {
return '';
}
return moment(date).format('DD/MM/YYYY');
}