el-scrollbar 动态更新内容 鼠标滚轮无效

news2024/11/22 20:44:33

有以下功能逻辑,实现了一个时间轴组件,点击+、-号后像地图那样放大组件以显示不同的UI。

默认显示年月:

当点击一下加号时切换为年: 

当点击减号时切换为日: 

即加号、减号点击就是在年月日显示进行切换。给Scrollview添加了鼠标滚动事件:当切换日期显示时滚轮滚动时,scrollview的滚动条没有反应,就很奇葩。。。

     <el-scrollbar  ref="scrollContainer" class="right-view" horizontal
            @wheel.native.prevent="handleScroll">

页面代码为:

<template>
    <div class="flex-row container-view">
        <div class="left-view">
            <div class="placeholder-view"></div>
            <div class="switch-view flex-column jc-between">
                <div class="h-view flex-row jc-around">
                    <i class="btns-view flex-row el-icon-timer" style="justify-content: center;"
                        @click="toCurrentAction"></i>
                    <i class="btns-view flex-row el-icon-circle-plus-outline" style="justify-content: center;"
                        @click="toDayAction"></i>
                    <i class="btns-view flex-row el-icon-remove-outline" style="justify-content: center;"
                        @click="toYearAction"></i>
                </div>
                <div class="flex-row w-100" style="height: 30px;">
                    <div class="flex-column" style="width: 12px;">
                        <div class="flex-column" style="height: 15px;justify-content:flex-end">
                            <i style="width: 8px;height:8px;background-color:#a0a0a0;border-radius:4px"></i>
                            <i style="width: 1px;height:4px;background-color:#a0a0a0;"></i>
                        </div>
                        <div class="flex-column" style="height: 15px;justify-content:flex-start">
                            <i style="width: 1px;height:4px;background-color:#a0a0a0;"></i>
                            <i style="width: 8px;height:8px;background-color:#a0a0a0;border-radius:4px"></i>
                        </div>
                    </div>
                    <div class="flex-column">
                        <span class="flex-column"
                            style="font-size:10px;color:#a0a0a0;height:15px;line-height:15px">自2021.01.01</span>
                        <span class="flex-column"
                            style="font-size:10px;color:#a0a0a0;height:15px;line-height:15px">至2024.10.31</span>
                    </div>
                </div>
            </div>
        </div>
        <el-scrollbar  ref="scrollContainer" class="right-view" horizontal
            @wheel.native.prevent="handleScroll">
            <template v-if="viewMode == 1">
                <div class="date-view flex-column"
                    :style="{ width: (yearList.length / yearList.length * monthList.length * gutterGap) + 'px' }">
                    <div class="flex-row w-100" style="height: 20px;">
                        <p v-for="(item, index) in yearList" :key="index" style="color:#a0a0a0;font-size:13px;"
                            :style="{ width: (monthList.length / yearList.length * gutterGap) + 'px' }">{{ item.date }}
                        </p>
                    </div>
                    <div class="flex-row" style="height: 20px;">
                        <p v-for="item in monthList" :style="{ width: `${gutterGap}px` }"
                            style="color:#505050;font-size:13px;">{{ item.month +
                                '月' }}</p>
                    </div>
                </div>
                <div class="switch-view bd-blue"
                    :style="{ width: (yearList.length / yearList.length * monthList.length * gutterGap) + 'px' }">
                    <div class="flex-row h-100" style="position: relative;">
                        <p class="sep-h-line" v-for="(item, kdex) in monthList"
                            :style="{ left: (kdex * gutterGap + 10) + 'px' }"></p>
                    </div>
                </div>
            </template>
            <template v-else-if="viewMode == 2">
                <div class="date-view flex-column"
                    :style="{ width: (yearList.length / yearList.length * monthList.length * gutterGap) + 'px' }">
                    <div class="flex-row w-100" style="height: 20px;">
                        <p v-for="(item, index) in yearList" :key="index" style="color:#a0a0a0;font-size:13px;"
                            :style="{ width: (monthList.length / yearList.length * gutterGap) + 'px' }">{{ item.date }}
                        </p>
                    </div>
                    <div class="flex-row" style="height: 30px;">
                        <div v-for="(item, mdex) in monthList" class="flex-column" :key="mdex">
                            <span :style="{ width: `${gutterGap}px` }" style="color:#505050;font-size:13px;">{{
                                item.month
                                + '月' }}
                            </span>
                            <div class="flex-row">
                                <span style="font-size: 12px;color:#505050;text-align:center;"
                                    v-for="(dtem, ddex) in daysList(item)" :key=ddex
                                    :style="{ width: `${gutterGap / monthDays(item)}px` }">
                                    {{ dtem.label }}
                                </span>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="switch-view bd-blue"
                    :style="{ width: (yearList.length / yearList.length * monthList.length * gutterGap) + 'px' }">
                    <div class="flex-row h-100" style="position: relative;">
                        <p class="sep-h-line" v-for="(item, kdex) in monthList"
                            :style="{ left: (kdex * gutterGap + 10) + 'px' }"></p>
                    </div>
                </div>
            </template>
            <template v-else>
                <div class="date-view flex-column" style="justify-content:flex-end"
                    :style="{ width: (yearList.length / yearList.length * monthList.length * gutterGap) + 'px' }">
                    <div class="flex-row w-100" style="height: 20px;">
                        <p v-for="(item, index) in yearList" :key="index" style="color:#a0a0a0;font-size:13px;"
                            :style="{ width: (monthList.length / yearList.length * gutterGap) + 'px' }">{{ item.date }}
                        </p>
                    </div>
                </div>
                <div class="switch-view bd-blue"
                    :style="{ width: (yearList.length / yearList.length * monthList.length * gutterGap) + 'px' }">
                    <div class="flex-row h-100" style="position: relative;">
                        <p class="sep-h-line" v-for="(item, kdex) in monthList"
                            :style="{ left: (kdex * gutterGap + 10) + 'px' }"></p>
                    </div>
                </div>
            </template>
        </el-scrollbar>
    </div>
</template>

<script>
import { getDaysInMonth } from '@/utils/index.js'
export default {
    data() {
        return {
            gutterGap: 120,
            scrollWith: 0,
            //0年 1月 2日
            viewMode: 1,
            yearList: [{
                date: '2021'
            }, {
                date: '2022'
            }, {
                date: '2023'
            }, {
                date: '2024'
            }],
            monthList: [],
            dayList: [{ "day": '1' }, { "day": '2' }, { "day": '3' }, { "day": '4' }]
        }
    },
    created() {
        this.autoMonths()
        this.$nextTick(() => {
            let atarget = document.querySelector(".right-view")
            this.scrollWith = atarget.offsetWidth
        })
    },
    computed: {
        scrollWrapper() {
            return this.$refs.scrollContainer.$refs.wrap
        }
    },
    mounted() {
        this.$nextTick(() => {
            this.$refs.scrollContainer.update()
        })
    },
    methods: {
        autoMonths() {
            this.monthList.removeAllObject()
            this.yearList.forEach((e, index) => {
                for (let a = 0; a < 12; a++) {
                    let d = e.date + '-' + (a < 10 ? '0' : '') + (a + 1)
                    let k = {
                        month: a + 1,
                        date: d
                    }
                    this.monthList.push(k)
                }
            })
        },
        handleScroll(e) {
            const eventDelta = e.wheelDelta || -e.deltaY * 40
            const $scrollWrapper = this.scrollWrapper
            let scrolled = $scrollWrapper.scrollLeft + eventDelta / 4
            $scrollWrapper.scrollLeft = scrolled

            this.$emit("scrolled", scrolled)
        },
        toCurrentAction() { },
        toDayAction() {
            this.viewMode = Math.max(0, this.viewMode - 1)
            if (this.viewMode == 1) {
                //显示月
                this.gutterGap = 120
            }
            else {
                //显示年
                this.gutterGap = 30
            }
            let vl = Math.max(this.scrollWith / (this.yearList.length * 12), this.gutterGap)
            vl = Math.ceil(vl)
            this.gutterGap = vl
            this.$nextTick(() => {
                this.$refs.scrollContainer.update();
            });
        },
        toYearAction() {
            //单位年
            this.viewMode = Math.min(2, this.viewMode + 1)
            if (this.viewMode == 1) {
                //显示月
                this.gutterGap = 120
            }
            else {
                //显示日
                this.gutterGap = 720
            }
            this.$nextTick(() => {
                this.$refs.scrollContainer.update();
            });
        },
        monthDays(m) {
            let c = getDaysInMonth(m.date)
            return c
        },
        daysList(m) {
            let c = getDaysInMonth(m.date)
            let list = []
            for (let i = 0; i < c; i++) {
                let e = {
                    label: (i + 1) + '',
                    value: m.date + (i < 10 ? '0' : '') + (i + 1)
                }
                list.push(e)
            }
            return list
        }
    }
}
</script>

<style lang="scss" scoped>
.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.container-view {
    min-height: 150px;
    height: 150px;
    max-height: 150px;
}

.left-view {
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}


.jc-around {
    justify-content: space-around;
}

.jc-between {
    justify-content: space-between;
}


.right-view {
    width: calc(100% - 100px);
    background-color: transparent;
}

.date-view {
    width: 100%;
    height: 50px;
}


.placeholder-view {
    height: 50px;
    background-color: transparent;
}

.switch-view {
    background-color: #f3f5f9;
    height: 100px;
}

.h-view {
    background-color: white;
    margin: 5px;
}

.btns-view {
    width: 24px;
    height: 24px;

    background-color: transparent;
}


.bd-blue {
    border-top: 20px solid #0286ef;
}


.sep-h-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #e2e7fb;
}

::v-deep {
    .is-horizontal {
        height: 10px !important;
        left: 0px;
        display: inline !important;
        margin-top: 6px;
    }
}
</style>

因scrollview内的内容不断的进行变化,他的contentsize也是动态变化,但此时当切换后鼠标滚轮无法触发Scrollview的滚动条一块儿跟着滑动。

修正方案为:强行更新scrollview,出现的问题随之修复。

this.$nextTick(() => {
    this.$refs.scrollContainer.update();
});

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2237439.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Linux【基础篇】

-- 原生罪 linux的入门安装学习 什么是操作系统&#xff1f; 用户通过操作系统和计算机硬件联系使用。桥梁~ 什么是Linux&#xff1f; 他是一套开放源代码&#xff08;在互联网上找到Linux系统的源代码&#xff0c;C语言写出的软件&#xff09;&#xff0c;可以自由 传播&…

C++类(5)

1.<<和>>操作符重载 我们该如何重载操作符<<和>>呢&#xff1f; 如果在类里面&#xff0c; void operator<<(ostream& out) {out << _year << "年" << _month << "月" << _day <&l…

【MM-Align】学习基于输运的最优对齐动力学,快速准确地推断缺失模态序列

代码地址 - > github传送 abstract 现有的多模态任务主要针对完整的输入模态设置&#xff0c;即每个模态在训练集和测试集中要么是完整的&#xff0c;要么是完全缺失的。然而&#xff0c;随机缺失的情况仍然没有得到充分的研究。在本文中&#xff0c;我们提出了一种新的方…

高精度算法-保姆级讲解

目录 1.什么是高精度算法 2.高精度加法 3.高精度减法 4.高精度乘法 5.高精度除法 &#xff08;高精度除以低精度&#xff09; 6.高精度阶乘&#xff08;n个低精度数相乘&#xff09; 1.什么是高精度算法 高精度算法&#xff08;High Accuracy Algorithm&#xff09;是…

vue大疆建图航拍功能实现

介绍 无人机在规划一块区域的时候&#xff0c;我们需要手动的给予一些参数来影响无人机飞行&#xff0c;对于一块地表&#xff0c;无人机每隔N秒在空中间隔的拍照地表的一块区域&#xff0c;在整个任务执行结束后&#xff0c;拍到的所有区域照片能够完整的表达出一块地表&…

learnopencv系列三:GrabCut和DeepLabv3分割模型在文档扫描应用中的实现

文章目录 一、使用OpenCV实现自动文档扫描1.1 图片预处理1.2 查找轮廓1.3 检测角点1.4 仿射变换1.5 Streamlit Web App1.5.1 设置扫描函数和图像下载链接函数1.5.2 streamlit app1.5.3 测试结果 二&#xff1a;DeepLabv3文档分割2.1 项目背景2.2 合成数据集2.2.1 图像收集与预处…

SQLite的BLOB数据类型与C++二进制存储学习记录

一、BLOB数据类型简介 Blob&#xff08;Binary Large Object&#xff09;是一种用于存储二进制数据的数据类型&#xff0c;在数据库中常用于存储图片、音频和视频等大型&#xff08;大数据量&#xff09;的二进制数据[1-2]。需要注意的是&#xff0c;SQLite中BLOB类型的单对象最…

C# 自己编写web服务

文件后缀响应 "text/html"; 文件后缀响应 "application/json"; httpListenerContext.Response.ContentType 文件后缀响应; httpListenerContext.Response.AppendHeader("Access-Control-Allow-Origin", "*"); // L…

微服务day04

网关 网关路由 快速入门 创建新模块&#xff1a;hm-gateway继承hmall父项目。 引入依赖&#xff1a;引入网关依赖和nacos负载均衡的依赖 <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"…

Agent框架调研:19种Agent架构对比分析

代理&#xff08;Agent&#xff09;指能自主感知环境并采取行动实现目标的智能体&#xff0c;即AI作为一个人或一个组织的代表&#xff0c;进行某种特定行为和交易&#xff0c;降低一个人或组织的工作复杂程度&#xff0c;减少工作量和沟通成本。 背景 目前&#xff0c;我们在…

ODOO学习笔记(4):Odoo与SAP的主要区别是什么?

Odoo 和 SAP 都是知名的企业资源规划&#xff08;ERP&#xff09;软件&#xff0c;它们之间存在以下一些主要区别&#xff1a; Odoo与SAP的区别 一、功能特点 功能广度 Odoo&#xff1a;提供了一整套全面的业务应用程序&#xff0c;涵盖了销售、采购、库存管理、生产、会计、…

python之正则表达式总结

正则表达式 对于正则表达式的学习&#xff0c;我整理了网上的一些资料&#xff0c;希望可以帮助到各位&#xff01;&#xff01;&#xff01; 我们可以使用正则表达式来定义字符串的匹配模式&#xff0c;即如何检查一个字符串是否有跟某种模式匹配的部分或者从一个字符串中将与…

【日志框架整合】Slf4j、Log4j、Log4j2、Logback配置模板

文章目录 一、日志框架介绍1、浅谈与slfj4、log4j、logback的关系2、性能方面3、Slf4j使用方法 二、log4j配置三、log4j2配置1、SpringBoot整合Log4j22、非SpringBoot项目引入的依赖3、log4j2-spring.xml文件&#xff08;Spring项目&#xff09;或log4j2.xml&#xff08;非Spri…

StarUML建模工具安装学习与汉化最新零基础详细教程【一键式下载】(适用于Windows、MacOS系统、Linux系统)

StarUML破解安装下载教程 前言&#xff1a; StarUML破解与汉化安装下载教程&#xff0c;仅供学习研究和交流使用&#xff0c;禁止作为商业用途或其他非法用途&#xff01; 仓库作者&#xff1a;X1a0He&#xff0c;经仓库作者授权使用。 目录 StarUML破解安装下载教程1. 下载…

【网络安全】2.3 安全的网络设计_2.防御深度原则

文章目录 一、网络架构二、网络设备三、网络策略四、处理网络安全事件五、实例学习&#xff1a;安全的网络设计结论 网络设计是网络安全的基础&#xff0c;一个好的网络设计可以有效的防止攻击者的入侵。在本篇文章中&#xff0c;我们将详细介绍如何设计一个安全的网络&#…

IoTDB 与 HBase 对比详解:架构、功能与性能

五大方向&#xff0c;洞悉 IoTDB 与 HBase 的详尽对比&#xff01; 在物联网&#xff08;IoT&#xff09;领域&#xff0c;数据的采集、存储和分析是确保系统高效运行和决策准确的重要环节。随着物联网设备数量的增加和数据量的爆炸式增长&#xff0c;开发者和决策者们需要选择…

如何找到系统中bert-base-uncased默认安装位置

问题&#xff1a; 服务器中无法连接huggingface&#xff0c;故需要自己将模型文件上传 ubuntu 可以按照这个链接下载 Bert下载和使用&#xff08;以bert-base-uncased为例&#xff09; - 会自愈的哈士奇 - 博客园 里面提供了giehub里面的链接 GitHub - google-research/be…

Qt 学习第十六天:文件和事件

一、创建widget对象&#xff08;文件&#xff09; 二、设计ui界面 放一个label标签上去&#xff0c;设置成box就可以显示边框了 三、新建Mylabel类 四、提升ui界面的label标签为Mylabel 五、修改mylabel.h&#xff0c;mylabel.cpp #ifndef MYLABEL_H #define MYLABEL_H#incl…

华为ensp配置bgp(避坑版)

文章目录 前言一、BGP是什么&#xff1f;二、拓扑三、基础配置四、测试五、拓展总结 前言 BGP&#xff08;Border Gateway Protocol&#xff0c;边界网关协议&#xff09;是一种在互联网中使用的路径矢量协议。它主要用于在不同的自治系统&#xff08;AS&#xff09;之间交换路…

QT最新版6.8在线社区版安装教程

访问QT的官网&#xff1a; Qt | Tools for Each Stage of Software Development Lifecycle 点击 Download Try&#xff1a; 点击社区版最新在线安装&#xff1a; 往下翻网页&#xff0c; 点击下载&#xff1a; 开始安装&#xff1a; 使用--mirror进行启动安装程序&#xff1…