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
450 B
14 lines
450 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/income-statistics',
|
|
data
|
|
})
|
|
}
|