You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
使用sc-date-picker 也就是今天(2019/10/31 UTC+8) 无法选择11月的日期,准确来说选择11月的任一日期会显示12月,非常的奇怪。细看了源码可能是day.js出了问题,我已经定位到 _MonthDay: function(t) {} 函数里,在该函数里生成a这个array时,有这么两句 var l = dayjs(); l = l.set("year", n).set("month", i).set("date", c)
使用sc-date-picker 也就是今天(2019/10/31 UTC+8) 无法选择11月的日期,准确来说选择11月的任一日期会显示12月,非常的奇怪。细看了源码可能是day.js出了问题,我已经定位到 _MonthDay: function(t) {} 函数里,在该函数里生成a这个array时,有这么两句
var l = dayjs(); l = l.set("year", n).set("month", i).set("date", c)
n是2019 i是10 (也就代表着11月),都是符合预期的,但是l就是错误的了,出来的结果l 为 {$m: 11, ...},$m明显是错的,跑到12月去了。
The text was updated successfully, but these errors were encountered: