19 lines
627 B
TypeScript
19 lines
627 B
TypeScript
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<AccountListGetResultModel>({ url: Api.loadTableListData, params });
|
|
|
|
export const loadTifTableListData = (params: AccountParams) =>
|
|
defHttp.get<AccountListGetResultModel>({ url: Api.loadTifTableListData, params });
|
|
|
|
|