指标列表

This commit is contained in:
仲么了
2024-01-15 16:15:24 +08:00
parent 646af778e9
commit 0feebcd5ba
12 changed files with 505 additions and 127 deletions

View File

@@ -0,0 +1,23 @@
import createAxios from '@/utils/request'
// 查询指标
export const queryStatistical = (id:string) => {
let form = new FormData()
form.append('id', id)
return createAxios({
url: '/system-boot/csstatisticalset/queryStatistical',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: form
})
}
// 绑定指标
export const addStatistical = (params:any) => {
return createAxios({
url: '/system-boot/csstatisticalset/addStatistical',
method: 'post',
data: params
})
}