我的案例和导出

This commit is contained in:
86182
2022-12-07 18:51:39 +08:00
parent ff0684fe1d
commit 3395125f18

View File

@@ -130,6 +130,29 @@ const excellent=function(data){
return ajax.post('/xboe/m/boe/cases/excellent',data)
}
/**
*我的案例
* @param{
* pageIndex
* pageSize
* }
* */
const mylist=function (query){
return ajax.post('/xboe/m/boe/cases/mylist',query);
}
/**
* 导出
* @param{
* pageIndex
* pageSize
* }
* */
const exportCases=function (query){
return ajax.post('/xboe/m/boe/cases/export',query);
}
export default {
indexList,
queryList,
@@ -145,5 +168,7 @@ export default {
majorTypes,
details,
ids,
excellent
excellent,
mylist,
exportCases
}