app/src/main/java/cn/flightfeather/thirdappmodule/util/DateUtil.kt
@@ -82,6 +82,18 @@
    }
    /**
     * MM
     */
    fun getMonthStr(date: Date?): String {
        try {
            return getDateStr(date).substring(5, 7)
        } catch (e: Exception) {
            e.printStackTrace()
        }
        return ""
    }
    /**
     * dd
     */
    fun getDayStr(date: Date?): String {
@@ -151,13 +163,13 @@
        return weekDays[index]
    }
    fun parseYearMonth(str: String): Date {
        try {
            return SimpleDateFormat("yyyy-MM", Locale.getDefault()).parse(str)
    fun parseYearMonth(str: String?): Date? {
        return try {
            SimpleDateFormat("yyyy-MM", Locale.getDefault()).parse(str)
        } catch (e: Exception) {
            e.printStackTrace()
            null
        }
        return Date()
    }
    fun parseYearToMin(str: String): Date {