| | |
| | | // 新增费用审批规则 |
| | | export function addFundflowrule(data) { |
| | | return request({ |
| | | url: '/project/fundflowrule', |
| | | url: '/project/fundflowrule/add', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | |
| | | // 修改费用审批规则 |
| | | export function updateFundflowrule(data) { |
| | | return request({ |
| | | url: '/project/fundflowrule', |
| | | method: 'put', |
| | | url: '/project/fundflowrule/edit', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | // 删除费用审批规则 |
| | | export function delFundflowrule(id) { |
| | | return request({ |
| | | url: '/project/fundflowrule/' + id, |
| | | method: 'delete' |
| | | url: '/project/fundflowrule/remove/' + id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |