🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 客户利润统计详情 #### 请求地址 admin/Profit/getProfitDetail 接口类型:需身份校验 #### body参数 | 名称 | 是否必须 | 类型 | 默认值 | 备注 | | --- | --- | --- | --- | --- | | token| true | string | null | token | | page| false| string | null | 当前页 | | pageSize| false| string | null | 每页显示条数 | |cardCatName|false | string | null | 卡种名称| |startTime|false| string | null | 开始时间 | |endTime|false| string | null | 结束时间 | | isExport| false | string | null | 是否导出Excel(0:否 1:是) | **备注:** isExport采用get方式传参时需要考虑 customerId | startTime | endTime 传参 #### 状态码 | Code | Msg | | --- | --- | | 0 | 成功 | | -1 | 失败 | #### 返回参数 | 名称 | 备注 | | --- | --- | | customerName | 企业名称 | | name | 卡种名称 | | salesPrice | 销售总价 | |costPrice | 成本总价 | |num | 有效订单 | |profit | 毛利 | #### 成功返回 ~~~ { "code": 0, "msg": "操作成功", "data": { "total": 10, "pageSize": 15, "start": 0, "root": [ { "id": 80, "customerName": "广州子轩网络科技有限公司", "name": "腾讯视频VIP会员周卡", "salesPrice": "63133.200", "costPrice": "60666.210", "num": 13490, "profit": "2466.990" } ], "totalPage": 1, "currPage": 1 } } ~~~