WXL
7 天以前 33c62946aa29d74a62c5dcbbc1cb06d16c8c91dc
src/api/system/tag.js
@@ -29,8 +29,8 @@
// 修改标签
export function updateTag(data) {
  return request({
    url: '/base/tag',
    method: 'put',
    url: '/base/tag/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除标签
export function delTag(tagid) {
  return request({
    url: '/base/tag/' + tagid,
    method: 'delete'
    url: '/base/tag/remove/' + tagid,
    method: 'get'
  })
}