Files
learning-system-portal/src/utils/xpage.js
2022-11-09 09:18:23 +08:00

21 lines
365 B
JavaScript

/**页面设置的一些常量,方便,用于一个处理只写一处,不要多处写*/
const constants={
fileBaseUrl:'',
newLoginKey:'boe_new_login'
}
/**返回个人主页的id参数*/
const getHomeId=function(r){
return r.params.id;
}
const getHomePath=function(id){
return '/home/'+id;
}
export default {
getHomeId,
getHomePath,
constants
}