Ant-Design-Vue日期选择中日历年月切换事件监听
首先,Ant-Design-Vue和Element UI都是不支持在日期选择时,日历中的年月切换时抛出事件的。当我们需要自定义渲染日期时,没有这个事件的监听,我们并不知道年月变了,就无法向后端获取标记的日期。解决办法1、在DOM中监听年月切换四个按钮(不推荐)2、监听年月文本节点的变化,关键事件DOMCharacterDataModified。年月切换时,需要从后端获取日期数据,所以最好...
·
首先,Ant-Design-Vue
和Element UI
都是不支持在日期选择时,日历中的年月切换时抛出事件的。当我们需要自定义渲染日期时,没有这个事件的监听,我们并不知道年月变了,就无法向后端获取标记的日期。
解决办法
1、在DOM中监听年月切换四个按钮(不推荐)
2、监听年月文本节点的变化,关键事件DOMCharacterDataModified
。
年月切换时,需要从后端获取日期数据,所以最好增加遮罩和loading,但是官方依然不支持,所以用spin组件,然后手动取日历的位置,盖上去达到这个效果。
<a-date-picker
suffixIcon=" "
:defaultValue="moment()"
:disabledDate="disabledDate"
@openChange="datePanelChange"
:allowClear="false">
<template slot="dateRender" slot-scope="current, today">
<div :class="['ant-calendar-date', {'work-day': isWorkDay(current)}]"
@click="updateDate(current)">{{current.format('DD')}}</div>
</template>
</a-date-picker>
// datePanelChange方法为openChange事件的执行函数
datePanelChange (isShow) {
if (isShow) {
setTimeout(() => {
const dateDom = document.querySelector('.ant-calendar-ym-select')
dateDom.addEventListener('DOMCharacterDataModified', () => {
this.getDatePanelStyle()
this.dateSpinning = true
const year = document.querySelector('.ant-calendar-year-select').innerText.replace('年', '')
let month = document.querySelector('.ant-calendar-month-select').innerText.replace('月', '')
month = month < 10 ? '0' + month : month
this.getWorkDay(year + '-' + month)
})
}, 0)
}
},
更多推荐
已为社区贡献9条内容
所有评论(0)