Lou
2024-04-27 16d2c3bbc8e5e405a09e5a1c8318538fb0d35bb6
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
    })
}