特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
329 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. // 企业相关接口
  2. const api = {
  3. // 根据企业id查看企业信息
  4. queryCompany: {
  5. url: '/employ/company/queryCompany',
  6. method: 'GET',
  7. },
  8. // 修改企业信息
  9. updateCompany: {
  10. url: '/employ/company/updateCompany',
  11. method: 'POST',
  12. auth : true,
  13. limit : 1500,
  14. showLoading : true,
  15. },
  16. }
  17. export default api