zhangchen
2023-10-23 61b8b562f74691ae4dfe11008339450d0bc91ea1
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
// Skelecton
 
declare interface ISkelectonStyle {
    width?: string;
    height?: string;
    "border-radius"?: string;
    [key: string]: any;
};
 
 
// login
 
declare interface ILoginForm {
    user_no: string;
    user_password: string;
};
 
 
declare interface IClientItem {
    id: number;
    code: string;
    clientName: string;
}
 
 
declare interface IForgetpasswordForm {
    userPhone: string;
    validateCode: string;
    pass: string;
    newPassword: string;
}
 
 
// index
 
declare interface IDurpItem {
    img: any;
    name: string;
    changshang: string;
    mary: string;
    guige: string;
    baozhuang: string;
}
declare interface IDurp {
    key: number;
    title: string;
    subTitle: string;
    list: IDurpItem[];
 
}
 
 
declare interface IDrugClassItem {
    img: any;
    title: string;
    guige: string;
    many: string;
    fuhao: string;
    baozhuang: string;
};
 
 
declare interface IDrugClass {
    title: string;
    subTitle: string;
    list: IDrugClassItem[];
};