| | |
| | | // 新增报销申请明细 |
| | | export function addReimbursementdetailshared(data) { |
| | | return request({ |
| | | url: '/project/reimbursementdetailshared', |
| | | url: '/project/reimbursementdetailshared/add', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | |
| | | // 修改报销申请明细 |
| | | export function updateReimbursementdetailshared(data) { |
| | | return request({ |
| | | url: '/project/reimbursementdetailshared', |
| | | method: 'put', |
| | | url: '/project/reimbursementdetailshared/edit', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | // 删除报销申请明细 |
| | | export function delReimbursementdetailshared(id) { |
| | | return request({ |
| | | url: '/project/reimbursementdetailshared/' + id, |
| | | method: 'delete' |
| | | url: '/project/reimbursementdetailshared/remove/' + id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |