jdf2e / nutui-react

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

Picker 选择器 数据源设置disabled 为 true 依然能选择 #2575

Open spwuc opened 2 months ago

spwuc commented 2 months ago

NutUI React 包名

@nutui/nutui-react-taro

NutUI React 版本号

2.6.17

平台

weapp

重现链接

重现步骤

Picker 选择器 数据源设置disabled 为 true 依然能选择

期望的结果是什么?

希望可以设置disabled后禁用

实际的结果是什么?

设置disabled后依然可以选择

环境信息

No response

其他补充信息

No response

zhangminggeek commented 2 months ago
export interface PickerOption {
  text: string | number
  value: string | number
  disabled?: boolean
  children?: PickerOption[]
  className?: string | number
}

ts 中定义了 disabled 但文档中没有体现功能,代码里也没有用到这个字段