diff --git a/src/pages/order/cost-of-sales/index.jsx b/src/pages/order/cost-of-sales/index.jsx index f815970..c931b47 100644 --- a/src/pages/order/cost-of-sales/index.jsx +++ b/src/pages/order/cost-of-sales/index.jsx @@ -49,7 +49,7 @@ const LoadingCard = () => { /** * 销售成本分析 - * @returns + * @returns */ export default function Index() { @@ -82,16 +82,16 @@ export default function Index() { //查询 const onQueryReportSalescost = async () => { const jsonData = { - "storeId": storeIdArray, - "goodsId": goodsIdArray, - "goodsTypeId": goodsTypeArray, + "storeId": storeIdArray[0], + "goodsId": goodsIdArray[0], + "goodsTypeId": goodsTypeArray[0], "begintime": timeRange[0], "endtime": timeRange[1], current, pageSize } setShowLoading(true); - const response = await costSalesAPI.getReportSalescost({}); + const response = await costSalesAPI.getReportSalescost(jsonData); setShowLoading(false); if (response.statusCode === 200) { setCostSalesData(response.data.data); diff --git a/src/pages/order/gross-profit-store-sales/index.jsx b/src/pages/order/gross-profit-store-sales/index.jsx index 5d5b1f7..d83fe30 100644 --- a/src/pages/order/gross-profit-store-sales/index.jsx +++ b/src/pages/order/gross-profit-store-sales/index.jsx @@ -29,7 +29,7 @@ const LoadingCard = () => { /** * 门店销售毛利分析 - * @returns + * @returns */ export default function Index() { @@ -56,14 +56,14 @@ export default function Index() { //查询 const onQueryReportSalescost = async () => { const jsonData = { - "storeId": storeIdArray, + "storeId": storeIdArray[0], "begintime": timeRange[0], "endtime": timeRange[1], current, pageSize } setShowLoading(true); - const response = await costSalesAPI.getReportOrgsalesmargin({}); + const response = await costSalesAPI.getReportOrgsalesmargin(jsonData); setShowLoading(false); if (response.statusCode === 200) { setCostSalesData(response.data.data); diff --git a/src/pages/order/sales-gross-profit/index.jsx b/src/pages/order/sales-gross-profit/index.jsx index 6ef8a2a..4fe0ba1 100644 --- a/src/pages/order/sales-gross-profit/index.jsx +++ b/src/pages/order/sales-gross-profit/index.jsx @@ -34,7 +34,7 @@ const LoadingCard = () => { /** * 销售毛利分析 - * @returns + * @returns */ export default function Index() { @@ -67,16 +67,16 @@ export default function Index() { //查询 const onQueryReportSalescost = async () => { const jsonData = { - "storeId": storeIdArray, - "goodsId": goodsIdArray, - "goodsTypeId": goodsTypeArray, + "storeId": storeIdArray[0], + "goodsId": goodsIdArray[0], + "goodsTypeId": goodsTypeArray[0], "begintime": timeRange[0], "endtime": timeRange[1], current, pageSize } setShowLoading(true); - const response = await costSalesAPI.getReportSalesmargin({}); + const response = await costSalesAPI.getReportSalesmargin(jsonData); setShowLoading(false); if (response.statusCode === 200) { setCostSalesData(response.data.data);