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

  1. import http from '@/util/http.js'
  2. // 查询钱包记录
  3. export const selectWalletRecords = (data) => {
  4. return http({
  5. method: 'POST',
  6. url: '/cashCollection/selectWalletRecords',
  7. data
  8. })
  9. }