companyApply.js 522 B

123456789101112131415161718192021222324252627
  1. import request from '@/utils/request'
  2. // 查询更换会员归属申请列表
  3. export function listApply(query) {
  4. return request({
  5. url: '/company/apply/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询更换会员归属申请详细
  11. export function getApply(id) {
  12. return request({
  13. url: '/company/apply/' + id,
  14. method: 'get'
  15. })
  16. }
  17. // 审核更换会员归属申请
  18. export function auditApply(data) {
  19. return request({
  20. url: '/company/apply/audit',
  21. method: 'post',
  22. data: data
  23. })
  24. }