Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzuaa
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzuaa
提交
7ba5ba76
提交
7ba5ba76
编写于
6月 10, 2020
作者:
laizhilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "oracle"
This reverts commit
bb4a49f4
上级
11b5f966
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
11 行增加
和
45 行删除
+11
-45
login.less
app_web/src/components/login/login.less
+5
-6
login.vue
app_web/src/components/login/login.vue
+6
-39
未找到文件。
app_web/src/components/login/login.less
浏览文件 @
7ba5ba76
...
@@ -17,18 +17,17 @@
...
@@ -17,18 +17,17 @@
position: absolute;
position: absolute;
left: 0;
left: 0;
right: 0;
right: 0;
top:
20%
;
top:
150px
;
margin: auto;
margin: auto;
width: 450px;
width: 450px;
.ivu-card-head {
.ivu-card-head {
padding: 30px
0px 20px 0
px;
padding: 30px
6
px;
border-bottom: 0px;
border-bottom: 0px;
>p{
>p{
height: 30px;
line-height: 20px;
line-height: 30px;
font-size: 24px;
font-size: 20px;
color: #666666;
color: #666666;
font-weight:
6
00;
font-weight:
7
00;
}
}
}
}
&-header{
&-header{
...
...
app_web/src/components/login/login.vue
浏览文件 @
7ba5ba76
...
@@ -71,11 +71,13 @@
...
@@ -71,11 +71,13 @@
</div>
</div>
</
template
>
</
template
>
<
script
lang=
"ts"
>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Watch
}
from
'vue-property-decorator'
;
import
{
Vue
,
Component
,
Watch
}
from
'vue-property-decorator'
;
import
{
Environment
}
from
'@/environments/environment'
;
import
{
Environment
}
from
'@/environments/environment'
;
//import Divider from "ibiz-vue-lib/lib/ibiz-vue-lib.common";
@
Component
({
@
Component
({
components
:
{}
})
})
export
default
class
Login
extends
Vue
{
export
default
class
Login
extends
Vue
{
...
@@ -138,9 +140,6 @@
...
@@ -138,9 +140,6 @@
this
.
setRules
();
this
.
setRules
();
}
}
/**
* 挂载
*/
public
mounted
()
{
public
mounted
()
{
this
.
getCookie
();
this
.
getCookie
();
}
}
...
@@ -220,6 +219,7 @@
...
@@ -220,6 +219,7 @@
_this
.
$router
.
push
(
'/register'
);
_this
.
$router
.
push
(
'/register'
);
}
}
/**
/**
* 设置cookie,保存账号密码
* 设置cookie,保存账号密码
* @param loginname
* @param loginname
...
@@ -255,15 +255,7 @@
...
@@ -255,15 +255,7 @@
* @param thirdpart
* @param thirdpart
*/
*/
public
tencentHandleClick
(
thirdpart
:
any
)
{
public
tencentHandleClick
(
thirdpart
:
any
)
{
// this.$Message.warning("qq授权登录暂未支持");
this
.
$Message
.
warning
(
"qq授权登录暂未支持"
)
var
_this
=
this
;
_this
.
$store
.
commit
(
'SET_AUTH_TYPE'
,
thirdpart
);
const
client_id
=
'xxx'
;
// 网站应用appid
const
redirect_uri
=
'xxx'
;
// 回调地址
// const url = 'https://graph.qq.com/oauth2.0/authorize?response_type=code&client_id=' + client_id + '&redirect_uri=' + redirect_uri;
const
url
=
'https://baidu.com'
;
// 打开qq授权登录界面,授权成功后会重定向到回调地址
this
.
openWindow
(
url
,
thirdpart
,
540
,
540
);
}
}
/**
/**
...
@@ -271,34 +263,9 @@
...
@@ -271,34 +263,9 @@
* @param thirddpart
* @param thirddpart
*/
*/
public
wechatHandleClick
(
thirddpart
:
any
)
{
public
wechatHandleClick
(
thirddpart
:
any
)
{
this
.
$Message
.
warning
(
"微信授权登录暂未支持"
);
this
.
$Message
.
warning
(
"微信授权登录暂未支持"
)
}
/**
* 打开一个新窗口
* @param url 链接地址
* @param title 窗口标题
* @param w 窗口宽度
* @param h 窗口高度
*/
public
openWindow
(
url
:
any
,
title
:
any
,
w
:
any
,
h
:
any
):
void
{
const
dualScreenLeft
=
window
.
screenLeft
;
const
dualScreenTop
=
window
.
screenTop
;
const
width
=
window
.
innerWidth
?
window
.
innerWidth
:
document
.
documentElement
.
clientWidth
?
document
.
documentElement
.
clientWidth
:
screen
.
width
;
const
height
=
window
.
innerHeight
?
window
.
innerHeight
:
document
.
documentElement
.
clientHeight
?
document
.
documentElement
.
clientHeight
:
screen
.
height
;
const
left
=
((
width
/
2
)
-
(
w
/
2
))
+
dualScreenLeft
;
const
top
=
((
height
/
2
)
-
(
h
/
2
))
+
dualScreenTop
;
const
newWindow
=
window
.
open
(
url
,
title
,
'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width='
+
w
+
', height='
+
h
+
', top='
+
top
+
', left='
+
left
);
// Puts focus on the newWindow
if
(
window
.
focus
&&
newWindow
)
{
newWindow
.
focus
();
}
}
}
}
}
</
script
>
</
script
>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录