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
| // 公共的接口,用于给别的接口继承
| interface publicInterface {
| verificationCode?: string
| }
|
| // 免登录
| export interface ddLogin {
| code: string,
| companyId: number | string
| }
|
| // 定义底部tabBar弹框数据类型
| export interface MenuVerification {
| icon: any,
| activeIcom: any,
| name: string,
| path: string,
| isCode?: boolean,
| isActive: boolean
| }
|
| // 接口查询参数
| export interface model {
| capacity: number,
| page: number,
| mixParam?: string
| }
|
| export interface BaseTypeModel {
| name: string,
| id: number
| }
|
| // 修改密码验证
| export interface passwordVerification {
| originalPassword: string,
| newPassword: string,
| confirmPassword: string
| }
|
| // 更新手机号
| export interface updatePhoneVerification extends publicInterface {
| currentPhone: string,
| newPhone: string
| }
|
| // 更新邮箱号
| export interface updateMailboxVerification extends publicInterface {
| currentMailbox: string,
| newMailbox: string
| }
|
|