@@ -49,7 +49,7 @@ const LoadingCard = () => { | |||||
/** | /** | ||||
* 销售成本分析 | * 销售成本分析 | ||||
* @returns | |||||
* @returns | |||||
*/ | */ | ||||
export default function Index() { | export default function Index() { | ||||
@@ -82,16 +82,16 @@ export default function Index() { | |||||
//查询 | //查询 | ||||
const onQueryReportSalescost = async () => { | const onQueryReportSalescost = async () => { | ||||
const jsonData = { | const jsonData = { | ||||
"storeId": storeIdArray, | |||||
"goodsId": goodsIdArray, | |||||
"goodsTypeId": goodsTypeArray, | |||||
"storeId": storeIdArray[0], | |||||
"goodsId": goodsIdArray[0], | |||||
"goodsTypeId": goodsTypeArray[0], | |||||
"begintime": timeRange[0], | "begintime": timeRange[0], | ||||
"endtime": timeRange[1], | "endtime": timeRange[1], | ||||
current, | current, | ||||
pageSize | pageSize | ||||
} | } | ||||
setShowLoading(true); | setShowLoading(true); | ||||
const response = await costSalesAPI.getReportSalescost({}); | |||||
const response = await costSalesAPI.getReportSalescost(jsonData); | |||||
setShowLoading(false); | setShowLoading(false); | ||||
if (response.statusCode === 200) { | if (response.statusCode === 200) { | ||||
setCostSalesData(response.data.data); | setCostSalesData(response.data.data); | ||||
@@ -29,7 +29,7 @@ const LoadingCard = () => { | |||||
/** | /** | ||||
* 门店销售毛利分析 | * 门店销售毛利分析 | ||||
* @returns | |||||
* @returns | |||||
*/ | */ | ||||
export default function Index() { | export default function Index() { | ||||
@@ -56,14 +56,14 @@ export default function Index() { | |||||
//查询 | //查询 | ||||
const onQueryReportSalescost = async () => { | const onQueryReportSalescost = async () => { | ||||
const jsonData = { | const jsonData = { | ||||
"storeId": storeIdArray, | |||||
"storeId": storeIdArray[0], | |||||
"begintime": timeRange[0], | "begintime": timeRange[0], | ||||
"endtime": timeRange[1], | "endtime": timeRange[1], | ||||
current, | current, | ||||
pageSize | pageSize | ||||
} | } | ||||
setShowLoading(true); | setShowLoading(true); | ||||
const response = await costSalesAPI.getReportOrgsalesmargin({}); | |||||
const response = await costSalesAPI.getReportOrgsalesmargin(jsonData); | |||||
setShowLoading(false); | setShowLoading(false); | ||||
if (response.statusCode === 200) { | if (response.statusCode === 200) { | ||||
setCostSalesData(response.data.data); | setCostSalesData(response.data.data); | ||||
@@ -34,7 +34,7 @@ const LoadingCard = () => { | |||||
/** | /** | ||||
* 销售毛利分析 | * 销售毛利分析 | ||||
* @returns | |||||
* @returns | |||||
*/ | */ | ||||
export default function Index() { | export default function Index() { | ||||
@@ -67,16 +67,16 @@ export default function Index() { | |||||
//查询 | //查询 | ||||
const onQueryReportSalescost = async () => { | const onQueryReportSalescost = async () => { | ||||
const jsonData = { | const jsonData = { | ||||
"storeId": storeIdArray, | |||||
"goodsId": goodsIdArray, | |||||
"goodsTypeId": goodsTypeArray, | |||||
"storeId": storeIdArray[0], | |||||
"goodsId": goodsIdArray[0], | |||||
"goodsTypeId": goodsTypeArray[0], | |||||
"begintime": timeRange[0], | "begintime": timeRange[0], | ||||
"endtime": timeRange[1], | "endtime": timeRange[1], | ||||
current, | current, | ||||
pageSize | pageSize | ||||
} | } | ||||
setShowLoading(true); | setShowLoading(true); | ||||
const response = await costSalesAPI.getReportSalesmargin({}); | |||||
const response = await costSalesAPI.getReportSalesmargin(jsonData); | |||||
setShowLoading(false); | setShowLoading(false); | ||||
if (response.statusCode === 200) { | if (response.statusCode === 200) { | ||||
setCostSalesData(response.data.data); | setCostSalesData(response.data.data); | ||||