wang1
2023-06-14 9a0fdf00ffeb37c188556a8fe7c223565269c3ca
1
2
3
4
5
6
7
8
9
10
11
import request from "@/router/axios";
//获取树形组件数据
export const getTreeList = (params) => {
  return request({
    url: '/api/ubcs-code/codeClassify/referTree',
    method: 'get',
    params:{
      ...params
    }
  })
}