3lang3 / react-vant

React mobile UI Components base on Vant
https://react-vant.3lang.dev
MIT License
1.28k stars 182 forks source link

fix(datetime-picker): 默认最小日期最大日期使用常量; #694

Closed NickeyLin closed 6 months ago

NickeyLin commented 6 months ago

将默认的最小日期最大日期改用常量,修复当未设置最小日期/最大日期时,在每个渲染周期都使用新的Date对象,导致下段代码异常重复执行,而引起 confirm 时 value 不正确(fix #663 ):

    useUpdateEffect(() => {
      const nextValue = formatValue(value)

      if (nextValue && nextValue.valueOf() !== currentDate?.valueOf()) {
        setCurrentDate(nextValue)
      }
    }, [value, filter, minDate, maxDate])