Ant-Design-Vue日期选择中日历年月切换事件监听
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
首先,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)
}
},
GitHub 加速计划 / vu / vue
80
16
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:4 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 6 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)