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