16 lines
389 B
TypeScript
16 lines
389 B
TypeScript
|
|
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
|
||
|
|
})
|
||
|
|
}
|