专业分类

This commit is contained in:
86182
2022-06-22 14:53:59 +08:00
parent c41bbd288b
commit 57c2f222e2

View File

@@ -93,6 +93,13 @@ const queryComments=function(pageSize){
return ajax.get(`/xboe/m/boe/cases/query-comments?pageSize=${pageSize}`);
}
/**
* 专业分类
* */
const majorTypes=function (){
return ajax.get('/xboe/m/boe/cases/majorTypes');
}
export default {
indexList,
queryList,
@@ -104,5 +111,6 @@ export default {
query,
usernameList,
queryPraises,
queryComments
queryComments,
majorTypes
}