Vben
2021-02-26 11d3f395caf7e2268630090eb34f4e5c114a96b7
提交 | 用户 | age
ac1a36 1 import { defHttp } from '/@/utils/http/axios';
V 2 import { DemoOptionsGetResultModel } from './model/optionsModel';
3
4 enum Api {
5   OPTIONS_LIST = '/select/getDemoOptions',
6 }
7
8 /**
9  * @description: Get sample options value
10  */
11d3f3 11 export const optionsListApi = () =>
V 12   defHttp.get<DemoOptionsGetResultModel>({ url: Api.OPTIONS_LIST });