Newer
Older
smartwell_front / src / api / mobile / device.ts
liyaguang on 26 Feb 336 bytes 新装设备完成
/**
 * 新装设备
 */
import request from '@/api/index'

// 基础列表
export function addDevice(data: any) {
  return request({
    url: `/system/busDevice/add`,
    method: 'post',
    data,
  })
}

export function editDevice(data: any) {
  return request({
    url: `/system/busDevice/edit`,
    method: 'post',
    data,
  })
}