fix:图例设置联调,线段增加弹窗展示数据

This commit is contained in:
2024-12-18 14:24:33 +08:00
parent f475aa4656
commit 13277b39e0
5 changed files with 235 additions and 126 deletions
+20
View File
@@ -0,0 +1,20 @@
import requsest from '@/utils/request';
// 查询图例设置列表
export function getWarnLineList(params) {
return requsest({
url: '/linetype/list',
method: 'get',
params
})
}
// 更新图例设置接口
export function updateWarnLine(params) {
return requsest({
url: '/linetype/update',
method: 'put',
data: params
})
}