管灌系统农户端微信小程序(嘉峪关应用)
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
import { SuperComponent } from '../common/src/index';
export default class Textarea extends SuperComponent {
    options: {
        multipleSlots: boolean;
    };
    behaviors: string[];
    externalClasses: string[];
    properties: import("./type").TdTextareaProps;
    data: {
        prefix: string;
        classPrefix: string;
        count: number;
    };
    observers: {
        value(val: any): void;
    };
    lifetimes: {
        ready(): void;
    };
    methods: {
        updateCount(val: any): void;
        updateValue(val: any): void;
        calculateValue(value: any, maxcharacter: any, maxlength: any): {
            value: any;
            count: number;
        };
        onInput(event: any): void;
        onFocus(event: any): void;
        onBlur(event: any): void;
        onConfirm(event: any): void;
        onLineChange(event: any): void;
        onKeyboardHeightChange(e: any): void;
    };
}