用 element ui 实现季度选择器

由于在数据项目中经常以各种时间条件查询数据,所以时间选择器(DatePicker)组件是很常用的组件。但是在我使用的 Element UI 中,缺少了季度选择器的功能。

简易实现

一开始我根据时间范围使用 select 去遍历,如 2024-Q1、2023-Q4、2023-Q3 如此类推。

image

element 并无季度选择器

其实也算是快速解决了 element ui 无法选择季度的问题。但总感觉特别的 low,后来有时间了就去隔壁 ant design 看了看。

image

发现在新版的 ant design 都支持季度和季度范围选择器了……

查了查新的 element plus 也只是只支持了 'year' | 'years' |'month' | 'date' | 'dates' | 'datetime' | 'week' | 'datetimerange' | 'daterange' | 'monthrange' 这些个类型。

工具不给力,又不想用其他库的情况下只能手搓了。

手搓季度选择器

季度面板

参考 ant design 做了一个类似的面板。

image

<template><div class="quarter-panel"><div class="quarter-panel-header"><iclass="quarter-panel-header-icon el-icon-arrow-left"@click="currentYear--"/><div class="quarter-panel-header-title">{{ currentYear }} 年</div><iclass="quarter-panel-header-icon el-icon-arrow-right"@click="currentYear++"/></div><div class="quarter-panel-content"><divv-for="option in quarterOptions"class="quarter-panel-item-btn":class="getComputedClass(option.value)":key="option.value"@click="emitClick(option.value)">{{ option.label }}</div></div></div>
</template><script>
import dayjs from 'dayjs'
import customParseFormat from 'dayjs/plugin/customParseFormat'dayjs.extend(customParseFormat)export default {name: 'QuarterPanel',props: {value: String,dice: Number,min: String,max: String,todayDisabled: Boolean,featureDisabled: Boolean,},data() {return {currentYear: 2023,}},computed: {day() {if (this.value) {return dayjs(this.value, 'YYYY-MM-DD')}return dayjs()},computedDate() {return this.day.startOf('quarter').format('YYYY-MM-DD')},quarterOptions() {return [{ label: 'Q1', value: `${this.currentYear}-01-01` },{ label: 'Q2', value: `${this.currentYear}-04-01` },{ label: 'Q3', value: `${this.currentYear}-07-01` },{ label: 'Q4', value: `${this.currentYear}-10-01` },]},},mounted() {this.currentYear = dayjs().year()},methods: {getDisabled(value) {let isFeature = falseif (this.todayDisabled) {isFeature = dayjs().subtract(1, 'day').startOf('quarter').isBefore(dayjs(value))} else if (this.featureDisabled) {isFeature = dayjs().startOf('quarter').isBefore(dayjs(value))}const isMin = this.min? dayjs(this.min, 'YYYY-MM-DD').startOf('quarter').isAfter(dayjs(value, 'YYYY-MM-DD')): falseconst isMax = this.max? dayjs(this.max, 'YYYY-MM-DD').startOf('quarter').isBefore(dayjs(value, 'YYYY-MM-DD')): falsereturn isFeature || isMin || isMax},getComputedClass(value) {if (this.computedDate === value) {return 'quarter-panel-item-btn-active'}if (this.getDisabled(value)) {return 'quarter-panel-item-btn-disabled'}return ''},emitClick(value) {if (this.getDisabled(value)) {return}this.$emit('input', value)},},watch: {dice() {this.currentYear = this.day.year()},},
}
</script><style lang="scss" scoped>
$--gw-primary-color: #f6674f;.quarter-panel {width: 200px;color: #303133;.quarter-panel-header {height: 30px;padding: 12px;display: flex;align-items: center;.quarter-panel-header-icon {font-size: 12;margin: 5px;cursor: pointer;&:hover {color: $--gw-primary-color;}}.quarter-panel-header-title {flex: 1;text-align: center;font-size: 16;}}.quarter-panel-content {display: flex;align-items: center;.quarter-panel-item-btn {flex: 1;font-size: 14;height: 30px;line-height: 30px;text-align: center;cursor: pointer;border: solid 1px transparent;border-radius: 5px;&:hover {color: $--gw-primary-color;border: solid 1px $--gw-primary-color;}}.quarter-panel-item-btn-active {background: $--gw-primary-color;color: #ffffff;&:hover {color: #ffffff;}}.quarter-panel-item-btn-disabled {color: #909399;background: #f2f6fc;cursor: not-allowed;&:hover {color: #909399;background: #f2f6fc;}}}
}
</style>

季度选择器

将面板放到 el-popover 中实现类似 DatePicker 的效果。并且提供了像清空数据、最大值、最小值等常用功能。

image

<template><div class="quarter-picker" :class="{ 'quarter-picker-disabled': disabled }"><div class="quarter-picker-date-button"><i class="iconfont icon-date-select-icon quarter-picker-time-icon" /><el-popoverplacement="bottom-start"width="200"trigger="click"ref="datePopover":disabled="disabled"@show="initPopover"><divclass="quarter-picker-date-button-item quarter-picker-date-button-item-long"slot="reference"><span v-if="form.date" class="button-item-span">{{ dateQuarterStr }}</span><span v-else class="button-item-span">选择时间</span><div class="bottom-line" /></div><quarterPanelv-model="form.date":dice="dice":min="min":max="max":featureDisabled="featureDisabled":todayDisabled="todayDisabled"@input="emitDateChange()"/></el-popover><iv-show="form.date && clearable"class="el-icon-close quarter-picker-clear-icon"@click.stop="clearCurrentDate"/></div></div>
</template><script>
import dayjs from 'dayjs'
import customParseFormat from 'dayjs/plugin/customParseFormat'
import quarterOfYear from 'dayjs/plugin/quarterOfYear'import quarterPanel from './quarterPanel.vue'dayjs.extend(customParseFormat)
dayjs.extend(quarterOfYear)/*** date 日期*/
export default {name: 'QuarterPicker',components: {quarterPanel,},props: {date: String,min: String,max: String,featureDisabled: Boolean,todayDisabled: Boolean,disabled: Boolean,clearable: Boolean,},data() {return {form: {date: '',},dice: 0,}},mounted() {this.syncData()},computed: {dateQuarterStr() {if (!this.form.date) return '选择季'const dj = dayjs(this.form.date).startOf('quarter')return `${dj.year()}-Q${dj.quarter()}`},},methods: {initPopover() {this.dice++},syncData() {this.form.date = this.date},clearCurrentDate() {if (this.disabled) returnthis.form.date = ''this.emitDateChange()},emitDateChange() {this.$emit('change', this.form)this.closePopovers()},closePopovers() {this.$refs.datePopover.doClose()},},watch: {date() {if (this.form.date !== this.date) {this.syncData()}},},
}
</script><style scoped lang="scss">
$--gw-primary-color: #f6674f;.quarter-picker {display: flex;flex-direction: row;align-items: center;justify-content: flex-end;.quarter-picker-date-button {display: flex;position: relative;flex-direction: row;align-items: center;justify-content: center;user-select: none;margin-left: 5px;width: 250px;padding-left: 10px;height: 28px;background: #ffffff;border: 1px solid #dcdfe6;font-size: 14px;font-family: Microsoft YaHei;font-weight: 400;color: #282c32;border-radius: 4px;.quarter-picker-time-icon {position: absolute;left: 12px;}.quarter-picker-date-button-item {position: relative;height: 28px;line-height: 28px;text-align: center;width: 70px;cursor: pointer;.bottom-line {position: absolute;bottom: 0;left: 0;right: 0;height: 2px;border-radius: 1px;background: transparent;}&:hover {.bottom-line {background: $--gw-primary-color;}}}.quarter-picker-date-button-item-long {width: 200px;.button-item-span {display: inline-block;width: 90px;text-align: center;}.button-item-span-active {color: $--gw-primary-color;}}.quarter-picker-clear-icon {position: absolute;right: 12px;font-size: 14;cursor: pointer;&:hover {color: $--gw-primary-color;}}}
}.quarter-picker-disabled {.quarter-picker-date-button {color: #c0c4cc;background-color: #f2f6fc;.quarter-picker-date-button-item {cursor: not-allowed;}}.quarter-picker-date-button-item {&:hover {.bottom-line {background: transparent !important;}}}.quarter-picker-clear-icon {cursor: not-allowed !important;&:hover {color: #c0c4cc !important;}}
}
</style>

组件的使用

最后就是组件的使用了:

  <QuarterPickertype="quarter":date="quarter.date":min="minDate":max="maxDate":featureDisabled="options.featureDisabled":todayDisabled="options.todayDisabled":disabled="options.disabled":clearable="options.clearable"@change="handleQuarterPickerChange"/>
handleQuarterPickerChange({ date }) {this.quarter.date = datethis.$message({message: '触发查询请求',type: 'success',})
},

最后

另外,季度范围选择器也可以用类似的思路来实现。以上就是个人解决季度选择器的方式。希望能对有类似需求的同学一些帮助。

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

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

相关文章

cdp集群Hbase组件HRegionServer服务停止原因以及排查

前言&#xff1a;重启集群后某一节点HRegionServer服务停止&#xff0c;重启前所有服务均正常 去查看日志&#xff1a; 日志报错 ERROR HRegionServer Master rejected startup because clock is out of sync org.apache.hadoop.hbase.ClockOutOfSyncException: org.apache.h…

Spark-Scala语言实战(17)

我带着大家一起来到Linux集群环境下&#xff0c;学习我们的spark。想了解的朋友可以查看这篇文章。同时&#xff0c;希望我的文章能帮助到你&#xff0c;如果觉得我的文章写的不错&#xff0c;请留下你宝贵的点赞&#xff0c;谢谢。 Spark-Scala语言实战&#xff08;16&#x…

linux 基础命令docker及防火墙iptables详解

应用场景&#xff1a; web应用自动打包和发布 自动化测试&#xff0c;持续集成、发布 在服务环境中部署后台应用 搭建paaS平台 安装应用 apt install docker.io#kali中 配置docker源&#xff0c;文件位置/etc/docker/daemon.json { "registry-mirrors": [ "h…

机器学习和深度学习-- 李宏毅(笔记于个人理解)Day 21

Day 21 Self- Attention 选修部分 ​ 学完自适应 再回来看看 Sequence Labling 假如我们现在有一个需要读完全部句子才能解的问题&#xff0c; 那么red window 就需要变得是最大的&#xff08;最长的句子&#xff09;&#xff1b; 其实这里大家有没有想过&#xff0c;这个玩意…

死磕GMSSL通信-java/Netty系列(二)

死磕GMSSL通信-java/Netty系列(二) 在上一篇文章中,我们探讨了如何利用C/C++实现国密通信。而本文将聚焦于Java环境下,特别是基于Netty框架,如何实现与国密系统的安全通信。为了确保新项目遵循最新的国密标准,我们将优先推荐使用GB/T 38636-2020(TLCP)协议。对于Java开…

45、二叉树-二叉树的右视图

思路 层序遍历 从左向右遍历每一层取最后一个数&#xff0c;代码如下&#xff1a; public List<Integer> rightSideView(TreeNode root) {if (rootnull){return new ArrayList<>();}Queue<TreeNode> queue new LinkedList<>();List<Integer> …

一例Mozi僵尸网络的挖矿蠕虫分析(workminer)

概述 这是一个Linux平台的挖矿蠕虫&#xff0c;使用了go和C混合编译而成&#xff0c;主要通过爆破SSH口令进行传播&#xff0c;属于Mozi僵尸网络。其中GO代码负责SSH相关的爆破传播&#xff0c;以及对Config的处理&#xff0c;C代码则负责处理加入Mozi P2P网络&#xff0c;拉取…

js中let和var的区别

在JavaScript中&#xff0c;var、let和const都用于声明变量&#xff0c;但它们之间存在一些重要的区别。特别是let和var之间的区别&#xff0c;我们可以概括为以下几点&#xff1a; 作用域&#xff08;Scope&#xff09;&#xff1a;var有函数作用域或全局作用域&#xff0c;而…

mybatis的使用技巧8——联合查询union和union all的区别和用法

在实际项目开发中&#xff0c;会经常联合查询结构相似的多张数据表&#xff0c;使用union关键字就只需要一次sql操作&#xff0c;而无需执行多次查询并通过代码逻辑合并处理&#xff0c;减少了大量繁琐的操作&#xff0c;最重要的是还能通过可选的all关键字筛选重复的数据。 1…

chatgpt免费使用网站

在人工智能的浪潮中&#xff0c;OpenAI的ChatGPT作为一款前沿的语言处理工具&#xff0c;已经引起了广泛的关注和讨论。 ChatGPT以其卓越的语言理解和生成能力&#xff0c;为用户提供了多样化的应用场景&#xff0c;从日常对话、编程辅助到内容创作等。然而&#xff0c;对于许…

RAID10如何创建?RAID10做法详细说明

RAID10创建步骤主要有7步&#xff1a;1.硬件准备&#xff1b;2.配置RAID卡或存储设备&#xff1b;3.选择RAID级别&#xff1b;4.添加硬盘到RAID 10组&#xff1b;5.添加硬盘到RAID 10组&#xff1b;6.保存并退出配置&#xff1b;7. 初始化RAID 10阵列。 RAID 10&#xff0c;也…

鸿蒙OpenHarmony【搭建Ubuntu环境】

搭建Ubuntu环境 在嵌入式开发中&#xff0c;很多开发者习惯于使用Windows进行代码的编辑&#xff0c;比如使用Windows的Visual Studio Code进行OpenHarmony代码的开发。但当前阶段&#xff0c;大部分的开发板源码还不支持在Windows环境下进行编译&#xff0c;如Hi3861、Hi3516…

MySQL文件目录结构:表在文件系统中的表示

以下内容基于Linux系统&#xff0c;MySQL的 /var/lib/mysql/ 目录下的数据文件 &#x1f496; Innodb 引擎 MySQL 5.7 MySQL 8.0 &#x1f31f; 总结 Innodb 是聚簇索引&#xff0c;索引及数据&#xff0c;数据即索引&#xff0c;所以数据和索引是存储在同一个文件中的 MyS…

OpenHarmony网络协议通信—libevent [GN编译] - 事件通知库

libevent主要是用C语言实现了事件通知的功能 下载安装 直接在OpenHarmony-SIG仓中搜索libevent并下载。 使用说明 以OpenHarmony 3.1 Beta的rk3568版本为例 库代码存放路径&#xff1a;./third_party/libevent 修改添加依赖的编译脚本 在/developtools/bytrace_standard/…

C++_类型转换

文章目录 学习目标&#xff1a;1.static_cast2. reinterpret_cast3.const_cast4. dynamic_cast 学习过程1.static_cast2. reinterpret_cast3.const_cast在这里插入图片描述4. dynamic_cast 学习目标&#xff1a; 标准C为了加强类型转换的可视性&#xff0c;引入了四种命名的强…

mysql 查询实战3-解答

对mysql 查询实战3-题目&#xff0c;进行一个解答 11、查询每⽉产品交易与退款情况 目标&#xff1a;查询每⽉产品交易&#xff08;交易总额&#xff0c;交易数&#xff09;与退款情况&#xff08;退款总额&#xff0c;退款数&#xff09; 1&#xff0c;先把日期格式化 使用 E…

STM32直接存储器存取DMA

前提知识&#xff1a; 1、STM32F103内部存储器结构以及映射 STM32F103的程序存储器、数据存储器、寄存器和IO端口被组织在同一个4GB的线性地址空间内。数据字节以小端模式存放在存储器中。即低地址中存放的是字数据的低字节&#xff0c;高地址中存放的是字数据的高字节 可访问…

用Python在PDF文档中插入单图像水印和平铺图像水印

PDF文档因其跨平台兼容性和内容保真度成为信息交换的标准载体&#xff0c;为应对版权侵犯、内容篡改以及未经授权的传播等风险&#xff0c;向PDF中插入图片水印成为一种强化文档安全性、彰显所有权及实施访问控制的有效手段。图片水印不仅能以直观的方式标示文档来源、强化版权…

Windows:web端UI自动化=python+selenium+pycharm框架

本篇写怎么写一个UI自动化代码。mac和Windows是一样的 都是这样写 不过&#xff0c;习惯用Windows了 如果python没有安装可以看我另一篇安装python的教程 先安装python先 下载完python 下载pip 1 安装pip $ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py # 下载…

Sentinel + Nacos流控规则持久化配置

json参数对映sentinel 规则面板 [{"controlBehavior": 0,"count": 2,"grade": 1,"limitApp": "default","resource": "flow","strategy": 0} ] 第二步&#xff0c;告诉订单服务读取配置&…