【前端】纸掌柜h5端
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.

14 lines
456 B

import http from '../utils/http/index.js'
/**
* 纸掌柜获取纸盘商订单统计
* @param {object} data
* @returns 订单统计
* swagger:http://api-ops-uec-test.qniao.cn/uec/swagger-ui/index.html?urls.primaryName=CustomerApi#/%E7%99%BB%E5%BD%95%E8%AE%A4%E8%AF%81/authorizeByCaptchaUsingPOST
*/
export const getOrderStatistics = (data) => {
return http.get({
url: '/base-paper-trading/get/supplier/order-volume-statistics',
data
})
}