This commit is contained in:
qsh
2024-07-31 18:35:36 +08:00
parent 1e40357e51
commit 48689642d8
9 changed files with 287 additions and 129 deletions

View File

@@ -37,3 +37,11 @@ export const cancelApplyPayment = async (data) => {
export const getPaymentDetail = async (params) => {
return await request.get({ url: '/admin-api/crm/sign-pay-record/get', params })
}
// 撤销
export const updateApplyPayment = async (data) => {
return await request.post({
url: '/admin-api/crm/sign-pay-record/updateRecordMoney',
data
})
}