zhongrj
2024-04-28 d50bb56965dc110d448cc5107d69cd443944d11b
src/api/categoryLabel/category.js
@@ -32,13 +32,21 @@
  })
}
export const remove = (id) => {
export const remove = (ids) => {
  return request({
    url: '/api/blade-category/category/remove',
    method: 'post',
    params: {
      id,
      ids
    }
  })
}
export const update = (row) => {
  return request({
    url: '/api/blade-category/category/update',
    method: 'post',
    data: row
  })
}
@@ -48,4 +56,4 @@
    method: 'post',
    data: row
  })
}
}