This commit is contained in:
dute7liang
2024-01-05 23:23:37 +08:00
parent 586f9ec2cb
commit c084e9f849
6 changed files with 213 additions and 315 deletions

View File

@@ -17,21 +17,12 @@ export function getAccountChangeLog(id) {
})
}
// 新增账户明细
export function addAccountChangeLog(data) {
return request({
url: '/cai/accountChangeLog',
method: 'post',
data: data
})
}
// 修改账户明细
export function updateAccountChangeLog(data) {
// 查询账户明细详细
export function listChangeType() {
return request({
url: '/cai/accountChangeLog',
method: 'put',
data: data
url: '/cai/accountChangeLog/listChangeType',
method: 'get'
})
}