@cainiaofe/cn-ui-m
Version:
20 lines (19 loc) • 433 B
JavaScript
import dayjs from 'dayjs';
export function convertValueToRange(selectionMode, value) {
if (selectionMode === undefined) {
return null;
}
if (value === null) {
return null;
}
if (Array.isArray(value)) {
return value;
}
return [value, value];
}
export function convertPageToDayjs(page) {
return dayjs()
.year(page.year)
.month(page.month - 1)
.date(1);
}