Lou
2024-01-31 b1942d99f0d3c9c5bde5cbb9f3364dd07fbd2cc4
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
    })
}