xiao547607 5 年之前
父节点
当前提交
f9df9ebe73
共有 1 个文件被更改,包括 10 次插入1 次删除
  1. 10 1
      src/api/base/company.js

+ 10 - 1
src/api/base/company.js

@@ -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
 }