|
@@ -13,8 +13,17 @@ function companyUserDetail(formData) {
|
|
|
return request.post(constant.serverUrl + "/company/companyUserDetail", formData);
|
|
|
}
|
|
|
|
|
|
+function promoterList(formData) {
|
|
|
+ return request.post(constant.serverUrl + "/company/promoterList", formData);
|
|
|
+}
|
|
|
+
|
|
|
+function queryPromoterList(formData) {
|
|
|
+ return request.post(constant.serverUrl + "/company/queryPromoterList", formData);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
export default {
|
|
|
- detail, pageList, companyUserDetail
|
|
|
+ detail, pageList, companyUserDetail,promoterList,queryPromoterList
|
|
|
}
|