| | |
| | | // 新增外围单位人员 |
| | | export function addExternalperson(data) { |
| | | return request({ |
| | | url: '/project/externalperson', |
| | | url: '/project/externalperson/add', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | |
| | | // 删除外围单位人员 |
| | | export function delExternalperson(id) { |
| | | return request({ |
| | | url: '/project/externalperson/' + id, |
| | | method: 'delete' |
| | | url: '/project/externalperson/remove/' + id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 取出最新编号值 |
| | | export function getOnlyCode(query) { |
| | | return request({ |
| | | url: '/project/baseonlyvalue/getOnlyCode', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |