WXL
9 天以前 783b99e90a91540d7b05a777b838b183558d50d1
src/api/smartor/schemetaskconfig.js
@@ -29,8 +29,8 @@
// 修改方案任务配置
export function updateSchemetaskconfig(data) {
  return request({
    url: '/smartor/schemetaskconfig',
    method: 'put',
    url: '/smartor/schemetaskconfig/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除方案任务配置
export function delSchemetaskconfig(id) {
  return request({
    url: '/smartor/schemetaskconfig/' + id,
    method: 'delete'
    url: '/smartor/schemetaskconfig/remove/' + id,
    method: 'get'
  })
}