project init
This commit is contained in:
31
src/api/hr/microWeb.js
Normal file
31
src/api/hr/microWeb.js
Normal file
@@ -0,0 +1,31 @@
|
||||
import request from '@/router/axios';
|
||||
/**获取企业申请列表 */
|
||||
export const getApplyList = (current, size, params) => {
|
||||
return request({
|
||||
url: '/api/jobslink-tenant/companyMicroWebsite/getList',
|
||||
method: 'get',
|
||||
params: {
|
||||
...params,
|
||||
current,
|
||||
size,
|
||||
}
|
||||
})
|
||||
}
|
||||
/**企业提交工作号的申请 */
|
||||
export const submitApply = (companyId,companyName,contact,telephone) => {
|
||||
return request({
|
||||
url: '/api/jobslink-tenant/companyMicroWebsite/add',
|
||||
method: 'post',
|
||||
data: {
|
||||
companyId,companyName,contact,telephone
|
||||
}
|
||||
})
|
||||
}
|
||||
/**标为已读 */
|
||||
export const makeRead = (data) => {
|
||||
return request({
|
||||
url: '/api/jobslink-tenant/companyMicroWebsite/edit',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user