20 lines
501 B
JavaScript
20 lines
501 B
JavaScript
|
|
import { http } from '@/utils/http'
|
||
|
|
|
||
|
|
// 根据身份证查询该人员是否已经存在上海内工程
|
||
|
|
export const getShProjectSettingByIdNumberAPI = (data) => {
|
||
|
|
return http({
|
||
|
|
method: 'POSt',
|
||
|
|
url: `/bmw/worker/selectByIdNumber/${data.idNumber}`,
|
||
|
|
data,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// 根据人员ID获取上海工程列表
|
||
|
|
export const getShProjectListByWorkerIdAPI = (data) => {
|
||
|
|
return http({
|
||
|
|
method: 'GET',
|
||
|
|
url: `/bmw/worker/einListByWorkerId`,
|
||
|
|
data,
|
||
|
|
})
|
||
|
|
}
|