uni-app日期范围选择,颗粒度为`年-月`,支持`至今`选项

2024-01-31 10:18

本文主要是介绍uni-app日期范围选择,颗粒度为`年-月`,支持`至今`选项,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 

1. 在components中创建sofar-picker.vue

<template><view :class="{'pickerMask':visable}" @click="maskClick" @touchmove.stop.prevent="returnHandle"><view class="picker-box" :class="{'picker-show':visable}"><view class="operate-box" @touchmove.stop.prevent="returnHandle" @tap.stop="returnHandle"><view class="time-box"><view @click="touchSelect(0)" class="time-item" :style="{color:touchIndex?'#000000':themeColor}"><text>{{startText}}</text><text>{{resultDate[0]}}</text></view><text>至</text><view @click="touchSelect(1)" class="time-item" :style="{color:touchIndex?themeColor:'#000000'}"><text>{{endText}}</text><text>{{resultDate[1]}}</text></view></view><view :style="{color:themeColor}" @click="pickerConfirm">确定</view></view><picker-view :value="pickerValue" @change="pickerChange" class="picker-view" :indicator-style="indicatorStyle" @tap.stop="returnHandle"><picker-view-column><view class="picker-item" v-for="(item,index) in yearList" :key="index">{{index>0||touchIndex<1? item+'年' : item+'年' }}</view></picker-view-column><picker-view-column><view class="picker-item" v-for="(item,index) in monthList" :key="index"><text v-show="pickerValue[0]>0||touchIndex<1">{{item}}月</text></view></picker-view-column></picker-view></view></view>
</template><script>export default {name: 'sofarPicker',props: {defaultDate: {type: Array,default: () => []},visable: {type: Boolean,default: false},minYear: {type: Number,default: 1990,},separator: {type: String,default: '.'},themeColor:{type: String,default: '#10BE9D'},startText: {type: String,default: '开始时间'},endText: {type: String,default: '结束时间'}},data() {const date = new Date();const yearList = [];const year = date.getFullYear();const monthList = [];const month = date.getMonth() + 1;for (let i = this.minYear; i <= date.getFullYear(); i++) {yearList.unshift(i);}for (let i = 1; i <= 12; i++) {monthList.push(i);}return {indicatorStyle: 'height: 100rpx;',touchIndex: 0,yearList: yearList,monthList: monthList,year: year,month: month,pickerValue: [0, month - 1],resultDate: []}},mounted() {this.setDate()},methods: {returnHandle(){},maskClick() {this.$emit('update:visable', false)},setDate() {if (this.defaultDate.length > 0) {let date = this.defaultDate[0]this.resultDate = this.defaultDatethis.setPicker(date)} else {let startTime = this.year + this.separator + this.monththis.resultDate = [startTime, '至今']}},setPicker(date) {console.log('setPicker');console.log(date);let startTime = this.year + this.separator + this.monthif (date === '至今') {this.pickerValue = [0, 0]} else {let dateArray = date.split(this.separator)let yearIndex = this.yearList.indexOf(Number(dateArray[0]))let monthIndex = this.monthList.indexOf(Number(dateArray[1]))this.pickerValue = [yearIndex, monthIndex]}	},getDate(date) {let result = ''let year = this.yearList[date[0]]let month = this.monthList[date[1]]if (year === '至今') {result = '至今'} else {result = year + this.separator + month}this.resultDate[this.touchIndex] = result},touchSelect(val) {console.log('touchSelect');let date = this.resultDate[val]if (this.touchIndex === val) {return} else {if (val) {this.yearList.unshift('至今')} else {this.yearList.splice(0, 1)}this.touchIndex = val}if (date) {this.setPicker(date)}},pickerChange(e) {this.pickerValue = e.detail.valuethis.getDate(e.detail.value)},pickerConfirm() {const { resultDate, year, month } = thislet nowTime = new Date(year+'/'+month).getTime()let startTime = new Date(resultDate[0]).getTime()let endTime = resultDate[1] === '至今' ? nowTime : new Date(resultDate[1]).getTime()if (startTime <= endTime && endTime <= nowTime) {this.$emit('confirm', resultDate)this.maskClick()} else {uni.showToast({title: '时间范围错误!',icon: 'none'})}}}}
</script><style lang="scss" scoped>.pickerMask {position: fixed;z-index: 998;top: 0;right: 0;left: 0;bottom: 0;background: rgba(0, 0, 0, 0.6);}.picker-box {position: fixed;bottom: 0;left: 0;width: 100%;transition: all 0.3s ease;transform: translateY(100%);z-index: 998;.operate-box {display: flex;align-items: center;justify-content: space-between;padding: 18rpx 30rpx;background-color: #FFFFFF;text-align: center;font-size: 30rpx;border-bottom: 2rpx solid #e5e5e5;.time-box {width: 60%;display: flex;align-items: center;justify-content: space-between;.time-item {display: flex;flex-direction: column;}}}}.picker-show {transform: translateY(0);}.picker-view {width: 750rpx;height: 600rpx;background-color: #FFFFFF;.picker-item {height: 100rpx;display: flex;align-items: center;justify-content: center;text-align: center;}}
</style>

2. 使用

<template><view class="content"><view class="header"><view class="date-item">年月范围:{{startTime}} - {{endTime}}</view></view><button class="date-btn" type="default" @click="openPicker">打开</button><sofar-picker :visable.sync="pickerVisable" :defaultDate="defaultDate" @confirm="confirm"></sofar-picker></view>
</template><script>import sofarPicker from '@/components/sofar-picker/sofar-picker.vue'export default {components: {sofarPicker},data() {return {pickerVisable: false,defaultDate: [],startTime: '',endTime: ''}},methods: {openPicker() {this.pickerVisable = true},confirm(date) {this.startTime = date[0]this.endTime = date[1]}}}
</script><style>.header {width: 100%;padding: 60rpx 30rpx;display: flex;flex-direction: column;}.date-item {margin-bottom: 30rpx;}.date-btn {width: 500rpx;height: 80rpx;line-height: 80rpx;}
</style>

这篇关于uni-app日期范围选择,颗粒度为`年-月`,支持`至今`选项的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/663426

相关文章

SpringKafka消息发布之KafkaTemplate与事务支持功能

《SpringKafka消息发布之KafkaTemplate与事务支持功能》通过本文介绍的基本用法、序列化选项、事务支持、错误处理和性能优化技术,开发者可以构建高效可靠的Kafka消息发布系统,事务支... 目录引言一、KafkaTemplate基础二、消息序列化三、事务支持机制四、错误处理与重试五、性能优

Python使用date模块进行日期处理的终极指南

《Python使用date模块进行日期处理的终极指南》在处理与时间相关的数据时,Python的date模块是开发者最趁手的工具之一,本文将用通俗的语言,结合真实案例,带您掌握date模块的六大核心功能... 目录引言一、date模块的核心功能1.1 日期表示1.2 日期计算1.3 日期比较二、六大常用方法详

Android App安装列表获取方法(实践方案)

《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

一文教你解决Python不支持中文路径的问题

《一文教你解决Python不支持中文路径的问题》Python是一种广泛使用的高级编程语言,然而在处理包含中文字符的文件路径时,Python有时会表现出一些不友好的行为,下面小编就来为大家介绍一下具体的... 目录问题背景解决方案1. 设置正确的文件编码2. 使用pathlib模块3. 转换路径为Unicod

基于Python实现多语言朗读与单词选择测验

《基于Python实现多语言朗读与单词选择测验》在数字化教育日益普及的今天,开发一款能够支持多语言朗读和单词选择测验的程序,对于语言学习者来说无疑是一个巨大的福音,下面我们就来用Python实现一个这... 目录一、项目概述二、环境准备三、实现朗读功能四、实现单词选择测验五、创建图形用户界面六、运行程序七、

MySQL 日期时间格式化函数 DATE_FORMAT() 的使用示例详解

《MySQL日期时间格式化函数DATE_FORMAT()的使用示例详解》`DATE_FORMAT()`是MySQL中用于格式化日期时间的函数,本文详细介绍了其语法、格式化字符串的含义以及常见日期... 目录一、DATE_FORMAT()语法二、格式化字符串详解三、常见日期时间格式组合四、业务场景五、总结一、

前端知识点之Javascript选择输入框confirm用法

《前端知识点之Javascript选择输入框confirm用法》:本文主要介绍JavaScript中的confirm方法的基本用法、功能特点、注意事项及常见用途,文中通过代码介绍的非常详细,对大家... 目录1. 基本用法2. 功能特点①阻塞行为:confirm 对话框会阻塞脚本的执行,直到用户作出选择。②

定价129元!支持双频 Wi-Fi 5的华为AX1路由器发布

《定价129元!支持双频Wi-Fi5的华为AX1路由器发布》华为上周推出了其最新的入门级Wi-Fi5路由器——华为路由AX1,建议零售价129元,这款路由器配置如何?详细请看下文介... 华为 Wi-Fi 5 路由 AX1 已正式开售,新品支持双频 1200 兆、配有四个千兆网口、提供可视化智能诊断功能,建

springboot日期格式化全局LocalDateTime详解

《springboot日期格式化全局LocalDateTime详解》文章主要分析了SpringBoot中ObjectMapper对象的序列化和反序列化过程,并具体探讨了日期格式化问题,通过分析Spri... 目录分析ObjectMapper与jsonSerializer结论自定义日期格式(全局)扩展利用配置

对postgresql日期和时间的比较

《对postgresql日期和时间的比较》文章介绍了在数据库中处理日期和时间类型时的一些注意事项,包括如何将字符串转换为日期或时间类型,以及在比较时自动转换的情况,作者建议在使用数据库时,根据具体情况... 目录PostgreSQL日期和时间比较DB里保存到时分秒,需要和年月日比较db里存储date或者ti