yxh
yxh
2024-01-05 26c14f0c6defe02f2b6f15b498bcd454461ee7a8
src/api/project/fundflow.js
@@ -29,8 +29,8 @@
// 修改费用审批流程
export function updateFundflow(data) {
  return request({
    url: '/project/fundflow',
    method: 'put',
    url: '/project/fundflow/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除费用审批流程
export function delFundflow(id) {
  return request({
    url: '/project/fundflow/' + id,
    method: 'delete'
    url: '/project/fundflow/remove/' + id,
    method: 'get',
  })
}