| | |
| | | export function addReimbursementdetail(data) { |
| | | |
| | | return request({ |
| | | url: '/project/reimbursementdetail', |
| | | url: '/project/reimbursementdetail/add', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 修改报销申请明细 |
| | | // export function updateReimbursementdetail(data) { |
| | | // return request({ |
| | | // url: '/project/reimbursementdetail', |
| | | // method: 'put', |
| | | // data: data |
| | | // }) |
| | | // } |
| | | export function updateReimbursementdetail(data) { |
| | | return request({ |
| | | url: '/project/reimbursementdetail', |
| | | method: 'put', |
| | | url: '/project/reimbursementdetail/reimbursementdetailEdit', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | export function delReimbursementdetail(id) { |
| | | return request({ |
| | | url: '/project/reimbursementdetail/deleteDetail/' + id, |
| | | method: 'delete' |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | |
| | | export function delReimbursementdetailrbid(rbid) { |
| | | return request({ |
| | | url: '/project/reimbursementdetail/deleteByRBId/' + rbid, |
| | | method: 'delete' |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |