tree.ts 286 B

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