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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
| import request from '@/utils/request'
|
| let BranchApi = {
| /*分会列表*/
| branchList(data, errorback) {
| return request._post('/operations/branch.branch/index', data, errorback);
| },
| /*分会列表(不分页)*/
| branchLists(data, errorback) {
| return request._post('/operations/branch.branch/lists', data, errorback);
| },
| /*添加分会*/
| toaddBranch(data, errorback) {
| return request._get('/operations/branch.branch/add', data, errorback);
| },
| /*添加分会*/
| addBranch(data, errorback) {
| return request._post('/operations/branch.branch/add', data, errorback);
| },
| /*分会编辑*/
| toEditBranch(data, errorback) {
| return request._get('/operations/branch.branch/edit', data, errorback);
| },
| /*分会编辑*/
| editBranch(data, errorback) {
| return request._post('/operations/branch.branch/edit', data, errorback);
| },
| /*删除分会*/
| deleteBranch(data, errorback) {
| return request._post('/operations/branch.branch/delete', data, errorback);
| },
| /*成员列表*/
| memberList(data, errorback) {
| return request._post('/operations/branch.member/index', data, errorback);
| },
| /*添加成员*/
| addMember(data, errorback) {
| return request._post('/operations/branch.member/add', data, errorback);
| },
| /*提现记录*/
| cashList(data, errorback) {
| return request._post('/operations/branch.cash/index', data, errorback);
| },
| /*提现审核*/
| cashSubmit(data, errorback) {
| return request._post('/operations/branch.cash/submit', data, errorback);
| },
| /*提现确认打款*/
| cashMoney(data, errorback) {
| return request._post('/operations/branch.cash/money', data, errorback);
| },
| /*分会待审核列表*/
| branchPendList(data, errorback) {
| return request._post('/operations/branch.branch/apply', data, errorback);
| },
| /*分会审核详情*/
| toAudit(data, errorback) {
| return request._get('/operations/branch.branch/audit', data, errorback);
| },
| /*分会审核*/
| audit(data, errorback) {
| return request._post('/operations/branch.branch/audit', data, errorback);
| },
| /*获取活动类型*/
| category(data, errorback) {
| return request._post('/operations/branch.category/index', data, errorback);
| },
| /*添加活动类型*/
| addCategory(data, errorback) {
| return request._post('/operations/branch.category/add', data, errorback);
| },
| /*编辑活动类型*/
| editCategory(data, errorback) {
| return request._post('/operations/branch.category/edit', data, errorback);
| },
| /*删除活动类型*/
| deleteCategory(data, errorback) {
| return request._post('/operations/branch.category/delete', data, errorback);
| },
| categoryStatus(data, errorback) {
| return request._post('/operations/branch.category/status', data, errorback);
| },
|
| /*活动列表*/
| activityList(data, errorback) {
| return request._post('/operations/branch.activity/index', data, errorback);
| },
| /*添加活动*/
| addActivity(data, errorback) {
| return request._post('/operations/branch.activity/add', data, errorback);
| },
| toEditActivity(data, errorback) {
| return request._get('/operations/branch.activity/edit', data, errorback);
| },
| /*编辑活动*/
| editActivity(data, errorback) {
| return request._post('/operations/branch.activity/edit', data, errorback);
| },
| /*删除活动*/
| deleteActivity(data, errorback) {
| return request._post('/operations/branch.activity/delete', data, errorback);
| },
| activityStatus(data, errorback) {
| return request._post('/operations/branch.activity/status', data, errorback);
| },
| /*报名列表*/
| activityUserList(data, errorback) {
| return request._post('/operations/branch.activityUser/index', data, errorback);
| },
| /*文件列表*/
| activityFileList(data, errorback) {
| return request._post('/operations/branch.activityFile/lists', data, errorback);
| },
|
| /*获取职务*/
| positionList(data, errorback) {
| return request._post('/operations/branch.position/index', data, errorback);
| },
| /*添加职务*/
| addPosition(data, errorback) {
| return request._post('/operations/branch.position/add', data, errorback);
| },
| /*编辑职务*/
| editPosition(data, errorback) {
| return request._post('/operations/branch.position/edit', data, errorback);
| },
| /*删除职务*/
| deletePosition(data, errorback) {
| return request._post('/operations/branch.position/delete', data, errorback);
| },
| positionStatus(data, errorback) {
| return request._post('/operations/branch.position/status', data, errorback);
| },
|
| /*连盟设置*/
| branchSet(data, errorback) {
| return request._get('/operations/branch.setting/index', data, errorback);
| },
| /*基础设置*/
| basic(data, errorback) {
| return request._post('/operations/branch.setting/basic', data, errorback);
| },
| /*入会协议*/
| license(data, errorback) {
| return request._post('/operations/branch.setting/license', data, errorback);
| },
| /*自定义文字*/
| words(data, errorback) {
| return request._post('/operations/branch.setting/words', data, errorback);
| },
| /*开启禁用*/
| branchRecycle(data, errorback) {
| return request._post('/operations/branch.branch/recycle', data, errorback);
| },
| }
| export default BranchApi;
|
|