import { defHttp } from '@/utils/http/axios'; import { AccountListGetResultModel, AccountListItem, AccountParams } from './model/index'; enum Api { loadTableListData = '/api/InAiShp/Load', //shp列表数据 loadTifTableListData = '/api/InsTif/Load', //tif影像列表数据 } /** * @description: Get sample options value */ export const loadTableListData = (params: AccountParams) => defHttp.get({ url: Api.loadTableListData, params }); export const loadTifTableListData = (params: AccountParams) => defHttp.get({ url: Api.loadTifTableListData, params });