数通互联化工云平台
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.

26 lines
567 B

7 months ago
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
});
}