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

13 lines
213 B
XML

/* eslint-disable */
function formatMonthTitle(date) {
date = getDate(date);
return date.getFullYear() + '年' + (date.getMonth() + 1) + '月';
}
module.exports = {
formatMonthTitle: formatMonthTitle
};