jdf2e / nutui-react

京东风格的移动端 React 组件库 、支持多端小程序(A React UI Toolkit for Mobile Web)
https://nutui.jd.com/react/
919 stars 263 forks source link

DatePicker value无法正常回显 #1580

Open Linxiaoxxx opened 1 year ago

Linxiaoxxx commented 1 year ago

NutUI React 包名

@nutui/nutui-react-taro

NutUI React 版本号

2.0.5

平台

weapp

重现链接

https://codesandbox.io/p/sandbox/datepicker-bug-7g57wp?file=%2Fsrc%2FApp.tsx%3A1%2C1

重现步骤

<DatePicker visible={showDate} type='datetime' value={new Date('2023-11-01')} onClose={() => setShowDate(false)} onConfirm={(_, values) => confirmDate(values)} />

期望的结果是什么?

正常回显

实际的结果是什么?

image

环境信息

No response

其他补充信息

No response

xiaoyatong commented 1 year ago

image

xiaoyatong commented 1 year ago

如果是在小程序下,使用 @nutui/nutui-react-taro 包

Linxiaoxxx commented 1 year ago

如果是在小程序下,使用 @nutui/nutui-react-taro 包

用的是@nutui/nutui-react-taro,重现代码有误

xiaoyatong commented 1 year ago

目前使用2.0.5,小程序ide 和 真机测试都可以。显示:

我的代码:

<DatePicker
  visible={showDate}
  type="datetime"
  value={new Date("2023-11-01")}
  onClose={() => setShowDate(false)}
  onConfirm={(_, values) => console.log(values)}
/>

辛苦发一下完整的demo。