// 用于滚动到当天的位置
scrollToToday() {
// 获取今天的日期
const today = new Date();
const day = today.getDate();
const year = today.getFullYear();
const month = today.getMonth() + 1;
this.yearMonth = year + "年" + month + "月" + day + "日";
const daysss = this.getMonthDiff('2023-7-10', year + '-' + month + '-' + day)
// 快速定位
this.$refs.scroller.scrollToPosition(106 * daysss);
this.showCal = false;
}
根据选择日期自动定位到点击位置
最新推荐文章于 2024-11-08 16:09:18 发布