From 2bf3fda0cd085d5e6af9b55471701e44768d26a9 Mon Sep 17 00:00:00 2001 From: yxh <172933527@qq.com> Date: 星期三, 20 十二月 2023 15:47:07 +0800 Subject: [PATCH] yxh:修改了银行账户管理 --- src/api/project/reimbursement.js | 25 +++++++++++++++++++++---- 1 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/api/project/reimbursement.js b/src/api/project/reimbursement.js index 6c9ecff..14cec00 100644 --- a/src/api/project/reimbursement.js +++ b/src/api/project/reimbursement.js @@ -35,13 +35,22 @@ } // 淇敼鎶ラ攢鐢宠 +// export function updateReimbursement(data) { +// return request({ +// url: '/project/reimbursement', +// method: 'put', +// data: data +// }) +// } + export function updateReimbursement(data) { return request({ - url: '/project/reimbursement', - method: 'put', + url: '/project/reimbursement/reimbursementEdit', + method: 'post', data: data }) } + // export function updateReimbursement(data) { // return request({ // url: '/project/reimbursement/editMoney', @@ -53,8 +62,8 @@ // 鍒犻櫎鎶ラ攢鐢宠 export function delReimbursement(id) { return request({ - url: '/project/reimbursement/' + id, - method: 'delete' + url: '/project/reimbursement/remove/' + id, + method: 'get' }) } @@ -100,4 +109,12 @@ method: 'post', data: data }) +} + +// 鍚屾鐢宠鍗曞埌鍏变韩琛� +export function addShareData(id) { + return request({ + url: '/project/reimbursement/addShareData/' + id, + method: 'get' + }) } \ No newline at end of file -- Gitblit v1.9.3