Browse Source

fix(laydate): 日期时间选择器,点击时间时 change 回调未触发 (#1787)

pull/1828/head
morning-star 7 months ago committed by GitHub
parent
commit
cc71ace202
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/modules/laydate.js

2
src/modules/laydate.js

@ -1751,7 +1751,7 @@
setTimeStatus();
scroll();
(that.endDate || options.type === 'time' || (options.type === 'datetime' && options.fullPanel)) && that.done(null, 'change');
(that.endDate || options.type === 'time' || options.type === 'datetime') && that.done(null, 'change');
//同步按钮可点状态
that.setBtnStatus();

Loading…
Cancel
Save