Lou
2024-04-13 45ff8bf8bb28eaab39c6cc7e13730fbaeb2e44fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import http from '@/http/api.js'
 
//保存
export const getLabelList = (params) => {
    return http.request({
        url: 'blade-label/label/list',
        method: 'GET',
        params
    })
}
 
// 获取标签信息
export const getLabelListByParentId = (param) => {
    return http.request({
        url: 'blade-label/label/getLabelList',
        method: 'GET',
        params: param
    })
}