This commit is contained in:
仲么了
2024-01-09 13:49:21 +08:00
parent 1d4bc5d442
commit 300d34c1bf
15 changed files with 655 additions and 224 deletions

View File

@@ -0,0 +1,15 @@
import createAxios from '@/utils/request'
// 查询分组
export function getGroup(dataSet: string) {
let form = new FormData()
form.append('dataSet', dataSet)
return createAxios({
url: '/cs-device-boot/csGroup/getGroup',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: form
})
}