标签管理接口修改

This commit is contained in:
夕阳微笑1 2024-12-16 13:42:24 +08:00
parent e3478d84bb
commit b525a67a09

View File

@ -26,6 +26,13 @@ export function labelApi() {
return request({ return request({
url: baseUrlHost + '/cpLabel', url: baseUrlHost + '/cpLabel',
method: 'get', method: 'get',
params,
});
},
getLabelListAll: (params: object) => {
return request({
url: baseUrlHost + '/cpLabel/all',
method: 'get',
params, params,
}); });
}, },