shuziren/job-seeker/miniprogram-2/miniprogram_npm/lin-ui/calendar/components/mounth/index.wxs

13 lines
213 B
Plaintext
Raw Normal View History

2024-02-29 08:06:26 +00:00
/* eslint-disable */
function formatMonthTitle(date) {
date = getDate(date);
return date.getFullYear() + '年' + (date.getMonth() + 1) + '月';
}
module.exports = {
formatMonthTitle: formatMonthTitle
};