Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

你好请问起始日期 支持动态添加吗? #23

Open
vincent-cong opened this issue Aug 18, 2017 · 5 comments
Open

你好请问起始日期 支持动态添加吗? #23

vincent-cong opened this issue Aug 18, 2017 · 5 comments

Comments

@vincent-cong
Copy link

比如 min-date="2017-03-10" max-date="2017-06-1"

这里的 min-date max-date start-date end-date 可以用 变量吗? 类似 new date() 吗?
'minDate': (now.getFullYear() - 100) + '-' + now.getMonth() + '-' + now.getDate(), //最小日期
'maxDate': now.getFullYear() + '-' + (now.getMonth() + 1) + '-' + now.getDate() //最大日期

或者你加了一个 past 来支持 今天以前的不能选
能不能加一个 属性 支持 今天之后的 不能选,只能选今天以前的

如有时间,麻烦回复下 灰常感谢。

@rookie125
Copy link
Owner

@vincent-cong 看了你最新的一个issue,你如果是用在vue上的,那么直接使用是不支持的,需要封装vue版本

@vincent-cong
Copy link
Author

@rookies125 我看了下 在VUE里面需要重新赋下值就可以了,用input的VALUE

@vincent-cong
Copy link
Author

@rookies125 麻烦问下 那个 日期的区间能否支持 动态的日期 比如 今天 之前

@rookie125
Copy link
Owner

@vincent-cong 目前没做这个处理,但是可以用maxDate来实现这个,只是需要你自己来把这个maxDate算出来

@vincent-cong
Copy link
Author

@rookies125 好吧。了解了,最好可以前台直接控制
这样就不用在html里面直接写死日期。。。
如果有时间的话可以支持下哦;灰常感谢
类似这样调用
var calendar= new LCalendar();
//今天以后一年
calendar.init({
'trigger': '#force_start_date', //标签id
'type': 'datetime', //date
'minDate': now.getFullYear() + '-' + (now.getMonth() + 1) + '-' + now.getDate(), //最小日期
'maxDate': (now.getFullYear()+1) + '-' + (now.getMonth() + 1)+ '-' + now.getDate() //最大日期
});

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants