consumptionRecords.js 193 B

12345678910
  1. import { request } from '@/api/config.js'
  2. // 消费记录
  3. export function orderListApi(data) {
  4. return request({
  5. url: '/wx/bkm/order/orderList',
  6. method: 'get',
  7. data: data,
  8. })
  9. }