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.
22 lines
527 B
22 lines
527 B
import request from '@/utils/request'
|
|
import qs from 'qs';
|
|
class organization{
|
|
inductionUnitList(data) { // 绑定单位 入职单位下拉框
|
|
return request({
|
|
url: '/system/organization/inductionUnitList',
|
|
method: 'post',
|
|
data: qs.stringify(data),
|
|
})
|
|
}
|
|
save(data) { // 人员机构关系保存
|
|
return request({
|
|
url: '/jlcyry/staffOrg/save',
|
|
method: 'post',
|
|
data: data,
|
|
headers: {'Content-Type': 'application/json'}
|
|
})
|
|
}
|
|
|
|
}
|
|
|
|
export default new organization()
|
|
|