当前位置:   article > 正文

Element UI el-date-picker datetime 日期时间选择器 底部添加清除按钮

Element UI el-date-picker datetime 日期时间选择器 底部添加清除按钮

背景

客户需要在时间选择器点击后在选择面板的下方添加一个清除按钮进行时间的清除,不想使用自带的清除小x按钮。

element-ui并没有暴露可以自定义按钮与事件。

解决方案

我想到了两个方案解决

1.使用组件提供的快捷方法 Shortcuts 完成,需要把样式调整到对应的位置。由于我最终没有选择这个方法,具体样式需要大家自己去完成。

image.png

2.使用自定义指令完成。最终的效果图如下

image.png

:话不多说,直接上代码

  1. <!-- :append-to-body 最好是设置为false DetePicker 自身是否插入至 body 元素上。 -->
  2. <!-- 不插入到body元素上是为了在自定义指令中更好的找到目标元素 -->
  3. <el-date-picker
  4. v-model="value"
  5. v-picker-clearable
  6. :append-to-body="false"
  7. type="datetime"
  8. />

接下来就是指令的完成,vue2(3也是同理)

  1. import i18n from '@/lang/index'
  2. /**
  3. * 日期选择清除
  4. * 使用 <el-date-picker v-picker-clearable :append-to-body="false"></el-date-picker>
  5. */
  6. const pickerClearable = {
  7. inserted(el, binding, vnode) {
  8. // 获取到picker实例
  9. const picker = vnode.componentInstance
  10. // 当组件focus的时候执行 仅执行一次
  11. picker.$once('focus', () => {
  12. picker.$nextTick(() => {
  13. // 假设他没有插入到body中 :append-to-body="false"
  14. let pickerPanel = el.querySelector('.el-picker-panel')
  15. if (!pickerPanel) {
  16. // 如果没有找到说明插入在body中 目前我看的规律是后创建的时候插入到最后一个
  17. const pickerPanelList = document.querySelectorAll('.el-picker-panel')
  18. const lastIndex = pickerPanelList.length - 1
  19. pickerPanel = el.querySelector('.el-picker-panel') || pickerPanelList[lastIndex]
  20. }
  21. if (pickerPanel) {
  22. const footer = pickerPanel.querySelector('.el-picker-panel__footer')
  23. if (footer) {
  24. // 创建清除按钮并插入到footer里面
  25. const clearButton = document.createElement('el-button')
  26. clearButton.textContent = i18n.t('clear')
  27. clearButton.className = 'clear-button el-button el-picker-panel__link-btn el-button--text el-button--mini'
  28. footer.insertBefore(clearButton, footer.firstChild)
  29. // 给按钮注册事件
  30. clearButton.addEventListener('click', () => {
  31. // 通过picker实现完成时间清空 pick方法不行 选择了input
  32. picker.$emit('input', null)
  33. // 关闭日期面板
  34. picker.handleClose()
  35. })
  36. }
  37. }
  38. })
  39. })
  40. }
  41. }
  42. export default pickerClearable

也可以到我的掘金上查看

作者:记得坚持
链接:https://juejin.cn/post/7317325063128088585
来源:稀土掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/514061
推荐阅读
相关标签
  

闽ICP备14008679号