按天计算提成相关

This commit is contained in:
xiezhijun
2021-01-11 21:06:46 +08:00
parent a9ada467d2
commit 64cda6be9e
16 changed files with 1278 additions and 5 deletions

View File

@ -68,3 +68,12 @@ export function getSalesman() {
method: 'get',
})
}
// 查询按天计算提成明细(营养师、售后)
export function detailDayCommision(query) {
return request({
url: '/custom/commision/detailDay',
method: 'get',
params: query
})
}