From dacf3c6ae5ede1c0a8a8b4afb24e2a3b62f0e368 Mon Sep 17 00:00:00 2001 From: yxh <172933527@qq.com> Date: 星期二, 21 十一月 2023 15:39:28 +0800 Subject: [PATCH] Merge branch 'wulong' of http://116.62.18.175:6699/r/~yxh/smartor-web into yxh01 --- src/api/system/tag.js | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/api/system/tag.js b/src/api/system/tag.js index d7d085e..0c00b1c 100644 --- a/src/api/system/tag.js +++ b/src/api/system/tag.js @@ -3,8 +3,8 @@ // 鏌ヨ鏍囩鍒楄〃 export function listTag(query) { return request({ - url: '/system/tag/list', - method: 'get', + url: '/base/tag/list', + method: 'post', params: query }) } @@ -12,7 +12,7 @@ // 鏌ヨ鏍囩璇︾粏 export function getTag(tagid) { return request({ - url: '/system/tag/' + tagid, + url: '/base/tag/' + tagid, method: 'get' }) } @@ -20,7 +20,7 @@ // 鏂板鏍囩 export function addTag(data) { return request({ - url: '/system/tag', + url: '/base/tag', method: 'post', data: data }) @@ -29,7 +29,7 @@ // 淇敼鏍囩 export function updateTag(data) { return request({ - url: '/system/tag', + url: '/base/tag', method: 'put', data: data }) @@ -38,7 +38,7 @@ // 鍒犻櫎鏍囩 export function delTag(tagid) { return request({ - url: '/system/tag/' + tagid, + url: '/base/tag/' + tagid, method: 'delete' }) } -- Gitblit v1.9.3