You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dianshang-qianduan/src/api/marketing-algorithm.js

34 lines
954 B
JavaScript

2 years ago
/*
* @Author: qinzhenpen qzp1807@126.com
* @Date: 2024-08-16 10:14:59
* @LastEditors: qinzhenpen qzp1807@126.com
2 years ago
* @LastEditTime: 2024-08-16 16:38:09
2 years ago
* @FilePath: \vue3\src\api\marketing-algorithm.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
2 years ago
import request from "@/utils/request";
2 years ago
// 选择指标分析数据展示
export function getMarketingAlgorithm(data) {
return request({
2 years ago
url: "/api/model/viewAnalyzeData",
method: "POST",
data,
});
2 years ago
}
// 查看指标
export function getMarketingAlgorithmList(params) {
return request({
2 years ago
url: "/api/model/viewMetrics",
method: "POST",
params,
});
}
// 描述性统计数据预处理
export function getMarketingAlgorithmPreprocessing(data) {
return request({
url: "/api/model/descriptiveStatistics",
method: "POST",
data,
});
}