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.
44 lines
822 B
JavaScript
44 lines
822 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 保存大屏设计
|
|
export function insertDashboard(data) {
|
|
return request({
|
|
url: 'business/reportDashboard',
|
|
method: 'post',
|
|
data,
|
|
})
|
|
}
|
|
|
|
// 预览、查询大屏详情
|
|
export function detailDashboard(data) {
|
|
return request({
|
|
url: 'business/reportDashboard/' + data,
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
// 数据集查询
|
|
export function queryAllDataSet(data) {
|
|
return request({
|
|
url: 'business/dataSet/queryAllDataSet',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
// 获取数据集信息
|
|
export function detailBysetId(data) {
|
|
return request({
|
|
url: 'business/dataSet/detailBysetId/' + data,
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
// 获取动态数据
|
|
export function getData(data) {
|
|
return request({
|
|
url: 'business/reportDashboard/getData',
|
|
method: 'post',
|
|
data,
|
|
})
|
|
}
|