Browse Source

查公司

zyp 1 week ago
parent
commit
5d6a52f8cc
1 changed files with 12 additions and 4 deletions
  1. 12 4
      src/api/company/company.js

+ 12 - 4
src/api/company/company.js

@@ -9,6 +9,14 @@ export function listCompany(query) {
   })
 }
 
+export function allList(query) {
+  return request({
+    url: '/company/company/allList',
+    method: 'get',
+    params: query
+  })
+}
+
 // 查询企业详细
 export function getCompany(companyId) {
   return request({
@@ -31,7 +39,7 @@ export function resetPwd(companyId) {
     method: 'post'
   })
 }
- 
+
 
 
 // 修改企业
@@ -80,8 +88,8 @@ export function deduct(data) {
     data: data
   })
 }
- 
- 
+
+
 
 // 查询企业列表
 export function crmDayCountlist(query) {
@@ -90,4 +98,4 @@ export function crmDayCountlist(query) {
     method: 'get',
     params: query
   })
-}
+}