You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
import request from '@/utils/request';
|
|
|
|
|
//获取维度及度量字段
|
|
|
|
|
export function dimMeaFormTable(data?: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/systemapi/chart/dimMeaFormTable",
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//将图表信息写入数据库
|
|
|
|
|
export function countChartValue(data?: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/systemapi/chart/countChartValue",
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//获取图表设定信息
|
|
|
|
|
export function getChartCont(data?: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/systemapi/chart/getChartCont",
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
//根据条件解析图标结果
|
|
|
|
|
export function analyzeChartData(data?: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/systemapi/chart/analyzeChartData",
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//初始化个人图表配置及数据
|
|
|
|
|
export function getMyChartSetupAndData(data?: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/systemapi/chart/getMyChartSetupAndData",
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//保存跟人图表设置
|
|
|
|
|
export function saveMyBiCharts(data?: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/systemapi/chart/saveMyBiCharts",
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
});
|
|
|
|
|
}
|