index.wxs 213 B

123456789101112
  1. /* eslint-disable */
  2. function formatMonthTitle(date) {
  3. date = getDate(date);
  4. return date.getFullYear() + '年' + (date.getMonth() + 1) + '月';
  5. }
  6. module.exports = {
  7. formatMonthTitle: formatMonthTitle
  8. };