| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const { post } = require('./request')
- module.exports = {
- getDeviceConfigs(data){
- return post({
- url: '/get_device_configs'
- })
- },
- getDeviceConfigDetail(data){
- return post({
- url: '/device_config_detail',
- data: data,
- headers:{
- 'Content-Type':"application/json",
- }
- })
- },
- //��̨ͼ
- removeConfig(data){
- return post({
- url: '/remove_config',
- data: data,
- headers:{
- 'Content-Type':"application/json",
- }
- })
- },
- // �����
- saveDeviceConfig(data){
- return post({
- url: '/save_device_config',
- data: data,
- headers:{
- 'Content-Type':"application/json",
- }
- })
- },
- }
|