consumptionRecords.js 192 B

1234567891011
  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. }