feat: 过滤组件绑定参数优化,可直接展示数据集中的参数

This commit is contained in:
taojinlong
2022-12-16 16:22:52 +08:00
parent c6ab3cc44a
commit 5eb4abe5ae
13 changed files with 115 additions and 38 deletions

View File

@@ -128,6 +128,14 @@ export function fieldListWithPermission(id, showLoading = true) {
})
}
export function datasetParams(id, type, showLoading = true) {
return request({
url: '/dataset/table/params/' + id + '/' + type,
loading: showLoading,
method: 'post'
})
}
export function fieldListDQ(id, showLoading = true) {
return request({
url: '/dataset/field/listByDQ/' + id,