function formatDate(d, formatter = 'yyyy-MM-dd HH:mm:ss') { const matches = { 'y+': d.getFullYear(), // 年 'M+': d.getMonth() + 1, // 月 'd+': d.getDate(), // 日 'H+': d.getHours(), // 时 (24h制) 'h+': d.getHours() % 12, // 时 (12h制) ...