UNPKG

zgg-ui

Version:

2.0.1 正式版本 基于 Vue 3、UniApp 和 TypeScript 开发的多端适配移动端 UI 组件库,旨在提供丰富的组件集合,帮助开发者快速构建多端响应式的移动应用界面

44 lines (37 loc) 815 B
import type { Dayjs } from '../../libs/dayjs' export type CalendarItemDateStatus = 'normal' | 'active' | 'range' | 'disabled' export interface CalendarItem { /** * @description 日期 */ date: number /** * @description 日期状态 */ status: CalendarItemDateStatus /** * @description 日期描述,可以存放农历、开始结束提示信息 */ desc?: string } export interface CalendarMonthData { /** * @description 月份 */ month: number /** * @description 月份的数据 */ data: CalendarItem[] } export type CalendarData = CalendarMonthData[] export interface DateData { year: number month: number date: number } export type CalendarSelectDataMap = Map<number, number[]> export type CalendarRangeSelectData = { start?: Dayjs end?: Dayjs }