zhoudw
2022-02-14 f1c11e128bacaccf1a42e7b58a84b5a5ce4423e1
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
72
73
74
export default {
    // 发送验证码
    sendSms: {
        method: 'post',
        url: "/app/loginApi/signInSendSms",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
    // 验证码登录
    codeLogin: {
        method: 'post',
        url: "/app/loginApi/codeSignin",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
    // 密码登录
    pwdLogin: {
        method: 'post',
        url: "/app/loginApi/login",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
    // 获取企业信息列表
    getCompList: {
        method: 'post',
        url: "/app/loginApi/getCompList",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
    // 获取企业信息列表
    newgetList: {
        method: 'post',
        url: "/app/voice/newgetList",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
    // 获取用户信息
    getUserInfo: {
        method: 'post',
        url: "/app/voice/getUser",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
    // 微信鉴权
    clientconfig: {
        method: 'post',
        url: "/app/voice/clientconfig",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
    // 退出登录
    loginout: {
        method: 'post',
        url: "/app/loginApi/signOut",
        config: {
            hideLoading: true,
            hideMsg: true
        }
    },
}