This commit is contained in:
qsh
2024-12-05 17:22:40 +08:00
parent fc22c16cb1
commit df3a4b9f46
2 changed files with 29 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ export const getPaymentList = async (params) => {
return await request.get({ url: '/admin-api/crm/sign-pay-record/list', params })
}
// 查询(精简)列表
// 查询列表
export const getPaymentPage = async (params) => {
return await request.get({ url: '/admin-api/crm/sign-pay-record/page', params })
}
@@ -45,3 +45,8 @@ export const updateApplyPayment = async (data) => {
data
})
}
// 导出
export const exportPayment = async (params) => {
return await request.download({ url: '/admin-api/crm/sign-pay-record/export-excel', params })
}