gaoluyang
18 小时以前 c9cfcbda7fb7c8b62b27d623feb0418790396740
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 销售指标统计接口
import request from "@/utils/request";
 
/** 客户往来汇总 */
export function customewTransactions(query) {
  return request({
    url: "/metricStatistics/customewTransactions",
    method: "get",
    params: query,
  });
}
 
/** 客户往来明细 */
export function customewTransactionsDetails(query) {
  return request({
    url: "/metricStatistics/customewTransactionsDetails",
    method: "get",
    params: query,
  });
}