vue-vben-admin/src/api/demo/select.ts

12 lines
351 B
TypeScript
Raw Normal View History

2020-12-27 22:25:35 +08:00
import { defHttp } from '/@/utils/http/axios';
import { DemoOptionsItem, selectParams } from './model/optionsModel';
2020-12-27 22:25:35 +08:00
enum Api {
OPTIONS_LIST = '/select/getDemoOptions',
}
/**
* @description: Get sample options value
*/
export const optionsListApi = (params?: selectParams) =>
defHttp.post<DemoOptionsItem[]>({ url: Api.OPTIONS_LIST, params });