前言 偶然间在群里看到一个小伙伴的需求,需要使用vant 封装时间段选择器,看到这个需求后,自己也想实现一下,说干就干!仓库地址 TimeRangePickerTypes.ts im
偶然间在群里看到一个小伙伴的需求,需要使用vant 封装时间段选择器,看到这个需求后,自己也想实现一下,说干就干!仓库地址
import { ExtractPropTypes, PropType } from 'Vue'
import dayjs from 'dayjs'
export const props = {
visible: {
type: Boolean,
default: false
},
times: {
type: Array as PropType<string[]>,
default: () => [dayjs().fORMat('HH-mm'), dayjs().format('HH-mm')]
},
apart: {
type: String,
default: '~'
},
maxTime: {
type: Number,
default: 23
},
minTime: {
type: Number,
default: 1
},
maxMinute: {
type: Number,
default: 59
},
minMinute: {
type: Number,
default: 1
}
}
export type Props = ExtractPropTypes<typeof props>
export interface timeResult {
startTime: string
startMinute: string
endTime: string
endMinute: string
}
<script lang="ts" setup>
import { ref, unref, watchEffect } from 'vue'
import { Popup, Picker } from 'vant'
import { props as TimeRangePickerProps } from './types'
import { useColumns } from './composable/useColumns'
const props = defineProps(TimeRangePickerProps)
interface Emits {
(e: 'update:visible', value: boolean): void
(e: 'update:times', value: string[]): void
(e: 'confirm'): void
}
const emits = defineEmits<Emits>()
const selectedValues = ref<string[]>([])
const popupVisible = ref(false)
watchEffect(() => {
popupVisible.value = props.visible
if (props.times.length !== 2) throw new Error('时间格式错误')
const startTimes = props.times[0].split(':')
const endTimes = props.times[1].split(':')
if (startTimes.length !== 2) throw new Error('开始时间格式错误')
else if (endTimes.length !== 2) throw new Error('结束时间错误')
selectedValues.value = [startTimes[0], startTimes[1], props.apart, endTimes[0], endTimes[1]]
})
const { columns } = useColumns(props)
const onPopupClose = () => {
emits('update:visible', false)
}
const onConfirm = () => {
const onValue = unref(selectedValues.value).filter((item) => item !== props.apart)
emits('update:times', [`${onValue[0]}:${onValue[1]}`, `${onValue[2]}:${onValue[3]}`])
emits('confirm')
onPopupClose()
}
</script>
<template>
<Popup v-model:show="popupVisible" position="bottom" @close="onPopupClose">
<Picker
v-bind="$attrs"
v-model="selectedValues"
:columns="columns"
@confirm="onConfirm"
@cancel="onPopupClose"
/>
</Popup>
</template>
import { computed, ref } from 'vue'
import { PickerOption } from 'vant'
import { Props } from '../types'
export function useColumns(props: Props) {
const times = computed(() => {
const result: PickerOption[] = []
for (let i = props.minTime; i <= props.maxTime; i++) {
const v = `${i}`.padStart(2, '0')
result.push({
text: v,
value: v
})
}
return result
})
const minutes = computed(() => {
const result: PickerOption[] = []
for (let i = props.minMinute; i <= props.maxMinute; i++) {
const v = `${i}`.padStart(2, '0')
result.push({
text: v,
value: v
})
}
return result
})
const columns = ref<PickerOption[][]>([
times.value,
minutes.value,
[{ text: props.apart, value: props.apart }],
times.value,
minutes.value
])
return {
columns
}
}
<script setup lang="ts">
import { ref } from 'vue'
import { TimeRangePicker } from './components'
const visible = ref(false)
const times = ref(['10:10', '12:10'])
const onConfirm = () => {
console.log('选择的时间是', times.value)
}
</script>
<template>
<div>
<van-button type="primary" @click="visible = true">选择日期</van-button>
<time-range-picker
v-model:visible="visible"
v-model:times="times"
:max-time="23"
@confirm="onConfirm"
></time-range-picker>
</div>
</template>
到此这篇关于vant4 封装日期段选择器的实现的文章就介绍到这了,更多相关vant4 日期段选择器内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: vant4封装日期段选择器的实现
本文链接: https://lsjlt.com/news/197995.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0