fit:添加分页接口

feature1.0
kongyeqing 2023-07-04 15:34:51 +08:00
parent dc642f0f1c
commit 7ea37acb53
1 changed files with 5 additions and 0 deletions

View File

@ -24,4 +24,9 @@ export default class DutyService extends BaseService<any>{
const url = this.prefix.file+'/getSysFiles';
return this.get(url,params,false)
}
public selectByPage2(params: any):Promise<AxiosResponse<ActionResult<any>>>{
const url = this.prefix.prevention+'/risk/task/list';
return this.get(url,params,true)
}
}