| 1234567891011121314151617181920212223242526 | 
import request from "@/utils/request"// 同意邀约面试export const userInterviewInviteConsent = async (params) => {  return request({    url: '/app-api/menduner/system/interview-invite/consent',    method: 'POST',    params,    custom: {      showLoading: false,      auth: false    }  })}// 拒绝邀约面试export const userInterviewInviteReject = async (id) => {  return request({    url: `/app-api/menduner/system/interview-invite/reject?id=${id}`,    method: 'POST',    custom: {      showLoading: false,      auth: false    }  })}
 |