11
WXL
3 天以前 a17d5d176d48f762ffd766fe2c39e6da716a97fa
src/api/project/reimbursementdetailshared.js
@@ -20,7 +20,7 @@
// 新增报销申请明细
export function addReimbursementdetailshared(data) {
  return request({
    url: '/project/reimbursementdetailshared',
    url: '/project/reimbursementdetailshared/add',
    method: 'post',
    data: data
  })
@@ -29,8 +29,8 @@
// 修改报销申请明细
export function updateReimbursementdetailshared(data) {
  return request({
    url: '/project/reimbursementdetailshared',
    method: 'put',
    url: '/project/reimbursementdetailshared/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除报销申请明细
export function delReimbursementdetailshared(id) {
  return request({
    url: '/project/reimbursementdetailshared/' + id,
    method: 'delete'
    url: '/project/reimbursementdetailshared/remove/' + id,
    method: 'get',
  })
}