54 lines
907 B
JavaScript
54 lines
907 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function post(url, data) {
|
|
return request({
|
|
url: url,
|
|
method: 'post',
|
|
loading: true,
|
|
data
|
|
})
|
|
}
|
|
|
|
export function ajaxGetData(id, data) {
|
|
return request({
|
|
url: '/chart/view/getData/' + id,
|
|
method: 'post',
|
|
loading: true,
|
|
hideMsg: true,
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getChartTree(data) {
|
|
return request({
|
|
url: 'api',
|
|
method: 'post',
|
|
loading: true,
|
|
data
|
|
})
|
|
}
|
|
|
|
export function chartCopy(id) {
|
|
return request({
|
|
url: '/chart/view/chartCopy/' + id,
|
|
method: 'post',
|
|
loading: true
|
|
})
|
|
}
|
|
export function chartGroupTree(data) {
|
|
return request({
|
|
url: '/chart/group/tree',
|
|
method: 'post',
|
|
loading: true,
|
|
data
|
|
})
|
|
}
|
|
|
|
export function searchAdviceSceneId(panelId) {
|
|
return request({
|
|
url: '/chart/view/searchAdviceSceneId/' + panelId,
|
|
method: 'get',
|
|
loading: true
|
|
})
|
|
}
|