1.图标新增利率,成本

This commit is contained in:
gyq
2025-12-02 16:09:04 +08:00
parent 35e65e16ac
commit eac72eb84e
13 changed files with 872 additions and 18 deletions

View File

@@ -35,6 +35,22 @@ const Api = {
params
});
},
// 毛利率/净利率 柱状图 左下下
profitRateBarChart(params: any) {
return request<any>({
url: `${baseURL}/profitRateBarChart`,
method: "get",
params
});
},
// 成本折线图 右下下
costLineChart(params: any) {
return request<any>({
url: `${baseURL}/costLineChart`,
method: "get",
params
});
},
};
export default Api;