|
|
/** * BASE_API:对应api网关的外网访问地址,在config/dev.env.js 和 config/prod.env.js 中配置, * context:应用的上下文路径,即spring boot中的server.context-path,如果server.context-path为空,则取applicationName * api的调用一般是 /${BASE_API}/${context}/${具体的后端服务路径} */
var sysName="唛盟项目管理系统";//系统名称,用于展示
export default { //登录相关
getOauth2LoginContext:function(){ return "oauth2client" }, //短信相关
getSmsContext: function() { return 'sms' }, // 图片内容服务api路径
getArcContext: function() { return 'arc' },
// 图片内容服务api路径
getFormContext: function() { return 'form' }, // 工作流api路径
getWorkflowContext: function() { return 'workflow' }, // 协同办公系统api路径
getOaContext: function() { return 'oa' }, //项目管理
getXmContext: function(){ return 'xm' }, //即时通讯
getImContext:function(){ return 'im' }, //付款
getPayContext:function() { return 'tpa' }, //模块订单
getMoContext(){ return 'sys' }, // 系统管理api路径
getSysContext: function() { return 'sys' }, getTpaContext: function(){ return 'tpa' }, // 商城管理后台api路径
getMallmContext: function() { return 'mallm' }, // 图片内容首页路径
getArcIndexPath: function() { return '/arc/arc/index.html' }, // 图片展示或下载路径
getArcFileUploadBasePath: function() { return window.location.protocol + '//' + window.location.host + '/api/' + process.env.VERSION + '/arc/arc' // return process.env.BASE_API+'/arc/arc'
}, //excel上传路径
getExcelUploadBasePath:function(){ return window.location.protocol + '//' + window.location.host + '/api/' + process.env.VERSION + '/oa/oa' }, // 图片展示或下载路径
getArcImagePath: function() { return window.location.protocol + '//' + window.location.host + '/api/' + process.env.VERSION + '/arc/arc' // return process.env.BASE_API+'/arc/arc'
}, // 系统管理首页路径
getSysIndexPath: function() { return '/sys/sys/index.html' }, // 商城管理后台首页路径
getMallmIndexPath: function() { return '/mallm/mallm/index.html' }, getWorkFlowEditorUrl: function() { return '/workflow/' + process.env.VERSION + '/editor/editor/indexIframe.html' },
//当前系统域名
getBaseDomainUrl:function(){ var curlDomain=window.location.protocol+"//"+window.location.host; // 返回https://mp.csdn.net
return curlDomain }, getFixedDomain:function(){ return "https://www.maimengcloud.com" }, //系统名称
getSysName: function() { return sysName }, getWxpubConfig:function(){ var config={ appid:'wx2671d5db8346b6fc', appname:'唛盟项目管理平台', appType:'wxopen', scope:'snsapi_login' } return config; }, /** * 本系统支持的动态组件编号列表 * @returns */ getSupportComponents:function(){ return ['myFocus'] }
}
|