feat: 仪表板支持接收外部参数

This commit is contained in:
wangjiahao
2022-03-17 21:14:19 +08:00
parent 343a386955
commit 89652ad890
33 changed files with 3512 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
import request from '@/utils/request'
export function queryWithPanelId(panelId) {
return request({
url: '/outerParams/queryWithPanelId/' + panelId,
method: 'get'
})
}
export function updateOuterParamsSet(requestInfo) {
return request({
url: '/outerParams/updateOuterParamsSet',
method: 'post',
data: requestInfo,
loading: true
})
}