zhongrj
2024-03-27 cc1c0a396698648256c350f6f0fe2cb2f0b02c7e
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import request from '@/router/axios';
 
export const manifestationList = (securityid) => {
    return request({
        url: '/api/performance/list',
        method: 'get',
        params: {
            securityid
        }
    })
}
 
export const dispatchList = (cardid) => {
    return request({
        url: '/api/dispatcher/page',
        method: 'get',
        params: {
            cardid
        }
    })
}
 
export const honorchList = (cardid) => {
    return request({
        url: '/api/honor/list',
        method: 'get',
        params: {
            cardid
        }
    })
}
 
 
export const trainList = (cardid) => {
    return request({
        url: '/api/train/selectTrainInfo',
        method: 'post',
        params: {
            cardid
        }
    })
}
 
export const examinationList = (cardid) => {
    return request({
        url: '/api/examination/selectExaminationInfo',
        method: 'post',
        params: {
            cardid
        }
    })
}
 
export const getInvestorList = (current, size, params) => {
    return request({
        url: '/api/shareholder/selectShareholderInfo',
        method: 'post',
        params: {
            ...params,
            current,
            size,
        }
    })
}
 
export const getManageList = (current, size, params) => {
    return request({
        url: '/api/member/selectMemberInfo',
        method: 'post',
        params: {
            ...params,
            current,
            size
        }
    })
}
 
 
export const usejurisdiction = () => {
    return request({
        url: '/api/jurisdiction/lazy-tree',
        method: 'get',
        // params: {
        //   ...params,
        //   current,
        //   size,
        //   creditcode,
        // }
    })
}
 
export const getBusinessInfo = (deptId) => {
    return request({
        url: '/api/business/getBusinessInfo',
        method: 'get',
        params: {
            deptId,
        }
    })
}
 
export const getLicenceDetail = (deptId) => {
    return request({
        url: '/api/licencePaper/detail',
        method: 'get',
        params: {
            deptId,
        }
    })
}