You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
204 B

import http from '@/util/http.js'
// 查询钱包记录
export const selectWalletRecords = (data) => {
return http({
method: 'POST',
url: '/cashCollection/selectWalletRecords',
data
})
}