修改
This commit is contained in:
@@ -68,5 +68,10 @@ export const bizListItemImportData = (
|
||||
params,
|
||||
);
|
||||
|
||||
export const bizListItemSflow = (params?: BizListItem | any) =>
|
||||
defHttp.get<BizListItem>({ url: adminPath + '/biz/listItem/sflow', params });
|
||||
|
||||
export const bizListItemDelete = (params?: BizListItem | any) =>
|
||||
defHttp.get<BizListItem>({ url: adminPath + '/biz/listItem/delete', params });
|
||||
|
||||
|
||||
|
||||
@@ -32,6 +32,9 @@ export interface BizProjectInfo extends BasicModel<BizProjectInfo> {
|
||||
|
||||
export const bizProjectInfoList = (params?: BizProjectInfo | any) =>
|
||||
defHttp.get<BizProjectInfo>({ url: adminPath + '/biz/projectInfo/list', params });
|
||||
|
||||
export const bizProjectInfoListAll = (params?: BizProjectInfo | any) =>
|
||||
defHttp.get<BizProjectInfo[]>({ url: adminPath + '/biz/projectInfo/listAll', params });
|
||||
|
||||
export const bizProjectInfoListData = (params?: BizProjectInfo | any) =>
|
||||
defHttp.post<Page<BizProjectInfo>>({ url: adminPath + '/biz/projectInfo/listData', params });
|
||||
|
||||
Reference in New Issue
Block a user