Explorar el Código

补充冲突的方法

yanliming hace 4 años
padre
commit
89703a3156
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      src/api/base/companyInfo.js

+ 5 - 1
src/api/base/companyInfo.js

@@ -86,8 +86,12 @@ function departmentList() {
   return request.post(constant.serverUrl + "/base/companyInfo/departmentList");
   return request.post(constant.serverUrl + "/base/companyInfo/departmentList");
 }
 }
 
 
+function getCompanyName(formData) {
+  return request.post(constant.serverUrl + "/base/companyInfo/getCompanyName", formData);
+}
+
 
 
 export default {
 export default {
   list, create, edit, add, update, remove, batchRemove, pageList, queryBindDeviceList,
   list, create, edit, add, update, remove, batchRemove, pageList, queryBindDeviceList,
-  bindDevice, unbindDevice,loadChildren,treeList,isOpenMobilePayment,departmentList
+  bindDevice, unbindDevice,loadChildren,treeList,isOpenMobilePayment,departmentList,getCompanyName
 }
 }