static String formatYearMonth(DateTime? t) { t = t?.toLocal(); return t == null ? "" : "${t.year}年${t.month}月"; }