WXL
6 天以前 7c5b7bdf55e9f50bed14f07c8a9b29cbc321d52a
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'
  })
}