We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
左侧的年月日交互为什么不能考虑参考右侧时分秒的交互方案,这样整个组件的交互方式将更加统一且 易于理解,肉眼可见的提升选定指定日期时间的操作效率
能否参考这个项目的交互方式@https://github.com/loper7/DateTimePicker
可能遇到的问题是对当前disableDate的支持, 因为选项将不再是固定的,尤其是日期部分
可能的一种解决方案:
当确定了其他五个字段时,任意一个字段的可用值范围取决于其所有高位字段是否命中disableDate。 此边界情况是唯一需要特殊处理的情况,否则将使用默认范围 , 举例: 对于年,默认范围将根据disableDate, 对于月,默认范围将根据年的取值是否命中disableDate的边界,否则将使用1-12 对于日,默认范围将根据年和日的取值是否命中disableDate的边界,否则将使用 1~dayjs().daysInMonth() 此设计将使disableDate支持年月日时分秒全字段
The text was updated successfully, but these errors were encountered:
👋 @Crpto999,感谢给 TDesign 提出了 issue。 请根据 issue 模版确保背景信息的完善,我们将调查并尽快回复你。
Sorry, something went wrong.
这个看起来是移动端的交互,移动端也确实是类似的操作 https://tdesign.tencent.com/mobile-vue/components/date-time-picker
No branches or pull requests
这个功能解决了什么问题
左侧的年月日交互为什么不能考虑参考右侧时分秒的交互方案,这样整个组件的交互方式将更加统一且 易于理解,肉眼可见的提升选定指定日期时间的操作效率
你建议的方案是什么?
能否参考这个项目的交互方式@https://github.com/loper7/DateTimePicker
可能遇到的问题是对当前disableDate的支持, 因为选项将不再是固定的,尤其是日期部分
可能的一种解决方案:
当确定了其他五个字段时,任意一个字段的可用值范围取决于其所有高位字段是否命中disableDate。 此边界情况是唯一需要特殊处理的情况,否则将使用默认范围 ,
举例:
对于年,默认范围将根据disableDate,
对于月,默认范围将根据年的取值是否命中disableDate的边界,否则将使用1-12
对于日,默认范围将根据年和日的取值是否命中disableDate的边界,否则将使用 1~dayjs().daysInMonth()
此设计将使disableDate支持年月日时分秒全字段
The text was updated successfully, but these errors were encountered: