管灌系统农户端微信小程序(嘉峪关应用)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { SwiperNavProps } from '../swiper-nav/index';
export interface TdSwiperProps {
    autoplay?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    current?: {
        type: NumberConstructor;
        value?: number;
    };
    direction?: {
        type: StringConstructor;
        value?: 'horizontal' | 'vertical';
    };
    displayMultipleItems?: {
        type: NumberConstructor;
        value?: number;
    };
    duration?: {
        type: NumberConstructor;
        value?: number;
    };
    easingFunction?: {
        type: StringConstructor;
        value?: 'default' | 'linear' | 'easeInCubic' | 'easeOutCubic' | 'easeInOutCubic';
    };
    height?: {
        type: null;
        value?: string | number;
    };
    imageProps?: {
        type: ObjectConstructor;
        value?: object;
    };
    interval?: {
        type: NumberConstructor;
        value?: number;
    };
    list?: {
        type: ArrayConstructor;
        value?: string[] | SwiperList[];
    };
    loop?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    navigation?: {
        type: null;
        value?: SwiperNavProps | boolean;
    };
    nextMargin?: {
        type: null;
        value?: string | number;
    };
    paginationPosition?: {
        type: StringConstructor;
        value?: 'top-left' | 'top' | 'top-right' | 'bottom-left' | 'bottom' | 'bottom-right';
    };
    previousMargin?: {
        type: null;
        value?: string | number;
    };
    snapToEdge?: {
        type: BooleanConstructor;
        value?: boolean;
    };
}
export interface SwiperList {
    value: string;
    ariaLabel: string;
}