Browse Source

优化 laydate 的 `shortcuts` 属性机制,当点击快捷选项时自动确认

pull/1249/head
贤心 2 years ago
parent
commit
59fe789706
  1. 6
      src/modules/laydate.js

6
src/modules/laydate.js

@ -633,6 +633,11 @@
lay(this).addClass(THIS);
// 自动确认
if(options.position !== 'static'){
that.setValue(that.parse()).done().remove();
}
/*
if (options.position !== 'static' && !options.range && options.autoConfirm) {
if (type === 'date') {
that.choose(lay(elem).find('td.layui-this'))
@ -642,6 +647,7 @@
}
}
}
*/
})
}

Loading…
Cancel
Save