WXL (wul)
3 天以前 23f74bc3f782d183f66a08bd8ce4790cc61f4e61
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'
  })
}