tree.ts 289 B

12345678910
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. TREE_OPTIONS_LIST = '/mock/tree/getDemoOptions',
  4. }
  5. /**
  6. * @description: Get sample options value
  7. */
  8. export const treeOptionsListApi = (params?: Recordable) => defHttp.get<Recordable[]>({ url: Api.TREE_OPTIONS_LIST, params });