|
@@ -168,12 +168,12 @@ export default {
|
168
|
168
|
},
|
169
|
169
|
auto: {
|
170
|
170
|
method: 'PUT',
|
171
|
|
- url: `${prefix}/customer/recommend/verify/id`,
|
|
171
|
+ url: `${prefix}/customer/recommend/verify/:id`,
|
172
|
172
|
action: 'admin.customer.recommend.verify.id.put',
|
173
|
173
|
},
|
174
|
174
|
recommendGetById: {
|
175
|
175
|
method: 'GET',
|
176
|
|
- url: `${prefix}/customer/recommend/getById/id`,
|
|
176
|
+ url: `${prefix}/customer/recommend/getById/:id`,
|
177
|
177
|
action: 'admin.customer.recommend.getById.id.get',
|
178
|
178
|
},
|
179
|
179
|
agents: {
|
|
@@ -193,17 +193,17 @@ export default {
|
193
|
193
|
},
|
194
|
194
|
recommendEdit: {
|
195
|
195
|
method: 'PUT',
|
196
|
|
- url: `${prefix}/customer/recommend/edit/id`,
|
|
196
|
+ url: `${prefix}/customer/recommend/edit/:id`,
|
197
|
197
|
action: 'admin.customer.recommend.edit.id.put',
|
198
|
198
|
},
|
199
|
199
|
taPointsRecords: {
|
200
|
200
|
method: 'GET',
|
201
|
|
- url: `${prefix}/mine/taPointsRecords/id`,
|
|
201
|
+ url: `${prefix}/mine/taPointsRecords/:id`,
|
202
|
202
|
action: 'admin.mine.taPointsRecords.id.get',
|
203
|
203
|
},
|
204
|
204
|
recommend: {
|
205
|
205
|
method: 'GET',
|
206
|
|
- url: `${prefix}/customer/recommend/id`,
|
|
206
|
+ url: `${prefix}/customer/recommend/:id`,
|
207
|
207
|
action: 'admin.customer.recommend.id.get',
|
208
|
208
|
},
|
209
|
209
|
InviteClientsList: {
|
|
@@ -213,7 +213,7 @@ export default {
|
213
|
213
|
},
|
214
|
214
|
CustomerRecommendGet: {
|
215
|
215
|
method: 'GET',
|
216
|
|
- url: `${prefix}/customer/recommend/get/id`,
|
|
216
|
+ url: `${prefix}/customer/recommend/get/:id`,
|
217
|
217
|
action: 'admin.customer.recommend.get.id.get',
|
218
|
218
|
},
|
219
|
219
|
customerRecommendRecommenderExport: { // 导出数据(推荐客户)
|