fix(api): select api type error
This commit is contained in:
parent
2c5351f9f4
commit
b387681c00
|
|
@ -8,4 +8,4 @@ export interface DemoOptionsItem {
|
||||||
/**
|
/**
|
||||||
* @description: Request list return value
|
* @description: Request list return value
|
||||||
*/
|
*/
|
||||||
export type DemoOptionsGetResultModel = BasicFetchResult<DemoOptionsItem[]>;
|
export type DemoOptionsGetResultModel = BasicFetchResult<DemoOptionsItem>;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { defHttp } from '/@/utils/http/axios';
|
import { defHttp } from '/@/utils/http/axios';
|
||||||
import { DemoOptionsGetResultModel } from './model/optionsModel';
|
import { DemoOptionsItem } from './model/optionsModel';
|
||||||
|
|
||||||
enum Api {
|
enum Api {
|
||||||
OPTIONS_LIST = '/select/getDemoOptions',
|
OPTIONS_LIST = '/select/getDemoOptions',
|
||||||
}
|
}
|
||||||
|
|
@ -8,5 +7,4 @@ enum Api {
|
||||||
/**
|
/**
|
||||||
* @description: Get sample options value
|
* @description: Get sample options value
|
||||||
*/
|
*/
|
||||||
export const optionsListApi = () =>
|
export const optionsListApi = () => defHttp.get<DemoOptionsItem[]>({ url: Api.OPTIONS_LIST });
|
||||||
defHttp.get<DemoOptionsGetResultModel>({ url: Api.OPTIONS_LIST });
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue