专业分类

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