Newer
Older
smartwell_front / src / api / home / tool / index.ts
liyaguang 9 days ago 687 bytes 添加诺成新指示带功能页面
/**
 * 诺成新设备指示带
 */
import request from '@/api/index'

// 基础列表 -分页
export function getNcxPositionList(data: any) {
  return request({
    url: `/system/ncxPosition/list`,
    method: 'post',
    data,
  })
}

// 新建
export function addNcxPosition(data: any) {
  return request({
    url: `/system/ncxPosition/add`,
    method: 'post',
    data,
  })
}
// 编辑
export function editNcxPosition(data: any) {
  return request({
    url: `/system/ncxPosition/edit`,
    method: 'post',
    data,
  })
}
// 删除
export function deleteNcxPosition(data: any) {
  return request({
    url: `/system/ncxPosition/batchDelete`,
    method: 'post',
    data,
  })
}