mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 08:36:19 +08:00
17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
import { defHttp } from '/@/utils/http/axios';
|
|
import { DemoOptionsGetResultModel } from './model/optionsModel';
|
|
|
|
enum Api {
|
|
OPTIONS_LIST = '/select/getDemoOptions',
|
|
}
|
|
|
|
/**
|
|
* @description: Get sample options value
|
|
*/
|
|
export function optionsListApi() {
|
|
return defHttp.request<DemoOptionsGetResultModel>({
|
|
url: Api.OPTIONS_LIST,
|
|
method: 'GET',
|
|
});
|
|
}
|