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.
45 lines
932 B
45 lines
932 B
1 year ago
|
// axios
|
||
|
import request from '@/utils/request'
|
||
|
|
||
|
//服务找人详情
|
||
|
export function icServiceRecordV2(data) {
|
||
|
return request({
|
||
|
url: `/governance/icServiceRecordV2/detail`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
}
|
||
|
//温暖找人详情
|
||
|
export function icServiceWarmRecord(data) {
|
||
|
return request({
|
||
|
url: `/governance/icServiceWarmRecord/detail`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
}
|
||
|
//技能找人详情
|
||
|
export function icServiceSkillRecord(data) {
|
||
|
return request({
|
||
|
url: `/governance/icServiceSkillRecord/detail`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
}
|
||
|
//岗位招人详情
|
||
|
export function icServicePostRecord(data) {
|
||
|
return request({
|
||
|
url: `/governance/icServicePostRecord/detail`,
|
||
|
method: 'post',
|
||
|
data
|
||
|
})
|
||
|
}
|
||
|
//扫描二维码获取房屋信息
|
||
|
export function policyDetail(id) {
|
||
|
return request({
|
||
|
url: `/governance/policy/policyDetail/${id}`,
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|