refund.js 342 Bytes
Newer Older
lixiaomin committed
1 2 3 4 5 6 7 8 9 10 11
import request from "@/utils/request";

// 查询退款订单列表
export function listRefund(query) {
  return request({
    url: "/system/refund/list",
    method: "get",
    params: query,
  });
}

lixiaomin committed
12 13 14 15 16 17 18 19
// 查询退款详情列表
export function getDetial(id) {
  return request({
    url: "/system/refund/" + id,
    method: "get",
  });
}