提交 104b2337 编写于 作者: shanwewei's avatar shanwewei

Merge branch 'dev' of http://demo.ibizlab.cn/vue_v2/vue_r6_res into dev

......@@ -15,4 +15,16 @@
- 基础文件:app-popover、app-drawer、app-modal打开视图时isModal设为true([#dc6016e2](http://demo.ibizlab.cn/vue_v2/vue_r6_res/commit/dc6016e21bebfd1e5455e964ae909553a04c1eb4) by @lxm)
- 文本框输入数值为小数,会出现异常
- input-box中对CurrentVal值处理进行修改 ([#fa681e4e](http://demo.ibizlab.cn/vue_v2/vue_r6_res/commit/fa681e4e2f4cafc9042b9024d7752349dc1f41b5) by @sww)
\ No newline at end of file
- input-box中对CurrentVal值处理进行修改 ([#fa681e4e](http://demo.ibizlab.cn/vue_v2/vue_r6_res/commit/fa681e4e2f4cafc9042b9024d7752349dc1f41b5) by @sww)
- 编辑器是数据选择和地址框,值变更,不会触发表单值校验
- 模板:表单部件增加校验单个表单项方法([#77acfead](http://demo.ibizlab.cn/vue_v2/vue_r6/commit/77acfeade92ee0c96f297ba78846d3505364b483) by @zpc)
- 基础文件:增加表单校验插件async-validator,数据选择编辑器抛值([#632dab6b](http://demo.ibizlab.cn/vue_v2/vue_r6_res/commit/632dab6bee460e2fb8100dd02ce1bb80a2b29164) by @zpc)
#### 新特性
- 前端增加单点登录功能
- 模板:环境变量中添加是否支持单点登录和单点登录地址2个变量([#7c296c20](http://demo.ibizlab.cn/vue_v2/vue_r6/commit/7c296c20435d2eece517e7790811980e45d0432d) by @zpc)
- 基础文件:在http拦截器中增加单点登录路由跳转的逻辑([#2d65dc4d](http://demo.ibizlab.cn/vue_v2/vue_r6_res/commit/2d65dc4df6421bfaffe6f65998f210b92e500cb8) by @zpc)
\ No newline at end of file
......@@ -87,10 +87,16 @@ export class Interceptors {
window.location.href = loginurl;
} else {
if (Object.is(this.router.currentRoute.name, 'login')) {
return;
if(Environment.isSsoLoginModel){
// 单点登录
window.location.href = Environment.ssoLoginAddr+'?service='+window.location.href;
}else{
// 普通应用登录
if (Object.is(this.router.currentRoute.name, 'login')) {
return;
}
this.router.push({ name: 'login', query: { redirect: this.router.currentRoute.fullPath } });
}
this.router.push({ name: 'login', query: { redirect: this.router.currentRoute.fullPath } });
}
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册