任务明细页面

This commit is contained in:
limqhz
2022-11-24 17:07:38 +08:00
parent 0a8e99c94c
commit ec41ce736d
106 changed files with 4892 additions and 48 deletions

57
components/date-time-picker/type.d.ts vendored Normal file
View File

@@ -0,0 +1,57 @@
export interface TdDateTimePickerProps {
cancelBtn?: {
type: StringConstructor;
value?: string;
};
confirmBtn?: {
type: StringConstructor;
value?: string;
};
end?: {
type: StringConstructor;
value?: string | number;
};
externalClasses?: {
type: ArrayConstructor;
value?: ['t-class', 't-class-confirm', 't-class-cancel', 't-class-title'];
};
format?: {
type: StringConstructor;
value?: string;
};
header?: {
type: BooleanConstructor;
value?: boolean;
};
mode?: {
type: StringConstructor;
value?: DateTimePickerMode;
};
showWeek?: {
type: BooleanConstructor;
value?: boolean;
};
start?: {
type: StringConstructor;
value?: string | number;
};
title?: {
type: StringConstructor;
value?: string;
};
value?: {
type: StringConstructor;
value?: DateValue;
};
defaultValue?: {
type: StringConstructor;
value?: DateValue;
};
visible?: {
type: BooleanConstructor;
value?: boolean;
};
}
export declare type DateTimePickerMode = TimeModeValues | Array<TimeModeValues>;
export declare type TimeModeValues = 'year' | 'month' | 'date' | 'hour' | 'minute' | 'second';
export declare type DateValue = string | number;