| | |
| | | // 新增费用申请明细 |
| | | export function addFunddetailshared(data) { |
| | | return request({ |
| | | url: '/project/funddetailshared', |
| | | url: '/project/funddetailshared/add', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | |
| | | // 修改费用申请明细 |
| | | export function updateFunddetailshared(data) { |
| | | return request({ |
| | | url: '/project/funddetailshared', |
| | | method: 'put', |
| | | url: '/project/funddetailshared/edit', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | // 删除费用申请明细 |
| | | export function delFunddetailshared(id) { |
| | | return request({ |
| | | url: '/project/funddetailshared/' + id, |
| | | method: 'delete' |
| | | url: '/project/funddetailshared/remove/' + id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |