11
WXL
2023-11-10 9ee0e9c0cf83ebca413f3512c830014b7b9a5792
src/api/project/financesubject.js
@@ -29,8 +29,8 @@
// 修改收入费用科目
export function updateFinancesubject(data) {
  return request({
    url: '/project/financesubject',
    method: 'put',
    url: '/project/financesubject/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除收入费用科目
export function delFinancesubject(id) {
  return request({
    url: '/project/financesubject/' + id,
    method: 'delete'
    url: '/project/financesubject/remove/' + id,
    method: 'get',
  })
}