lin
2024-03-15 ac3484ecf17dd21522bc47379181fcc5b223580b
1
2
3
4
5
6
7
8
9
10
11
12
import request from '@/router/axios';
 
export const getList = (size, params) => {
    return request({
      url: '/api/blade-categoryLabel/categoryLabel/list',
      method: 'get',
      params: {
        ...params,
        size,
      }
    })
  }