Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzuaa
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzuaa
提交
c90b4238
提交
c90b4238
编写于
9月 17, 2020
作者:
laizhilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
去掉不必要的函数注释
上级
0c40ca6f
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
17 行增加
和
58 行删除
+17
-58
dingdingLoginRedirect.vue
app_web/src/components/login/dingdingLoginRedirect.vue
+4
-16
login.vue
app_web/src/components/login/login.vue
+7
-16
qqLoginRedirect.vue
app_web/src/components/login/qqLoginRedirect.vue
+3
-13
weixinLoginRedirect.vue
app_web/src/components/login/weixinLoginRedirect.vue
+3
-13
未找到文件。
app_web/src/components/login/dingdingLoginRedirect.vue
浏览文件 @
c90b4238
...
@@ -64,29 +64,25 @@
...
@@ -64,29 +64,25 @@
// 表单
// 表单
public
form
:
any
=
{
loginname
:
''
,
password
:
''
};
public
form
:
any
=
{
loginname
:
''
,
password
:
''
};
// 按钮可点击
// 按钮可点击
public
canClick
:
any
=
true
;
public
canClick
:
any
=
true
;
// 按钮内容
// 按钮内容
public
BtnContent
:
any
=
"注册并绑定钉钉"
;
public
BtnContent
:
any
=
"注册并绑定钉钉"
;
// 钉钉授权成功返回的code和state
// 钉钉授权成功返回的code和state
public
code
:
any
;
public
code
:
any
;
public
state
:
any
;
public
state
:
any
;
// 钉钉用户信息
public
dingtalkUserInfo
:
any
=
{
public
dingtalkUserInfo
:
any
=
{
openid
:
''
,
// 钉钉用户身份的唯一标识
openid
:
''
,
// 钉钉用户身份的唯一标识
nickname
:
''
,
// 钉钉用户名称
nickname
:
''
,
// 钉钉用户名称
unionid
:
''
,
// 钉钉用户唯一标识
unionid
:
''
,
// 钉钉用户唯一标识
}
}
;
/**
/**
* 应用名称
* 应用名称
*
*
* @type {string}
* @type {string}
* @memberof Register
*/
*/
public
appTitle
:
string
=
Environment
.
AppTitle
;
public
appTitle
:
string
=
Environment
.
AppTitle
;
...
@@ -100,8 +96,6 @@
...
@@ -100,8 +96,6 @@
/**
/**
* 设置值规则
* 设置值规则
*
* @memberof Register
*/
*/
public
setRules
()
{
public
setRules
()
{
this
.
rules
=
{
this
.
rules
=
{
...
@@ -115,16 +109,14 @@
...
@@ -115,16 +109,14 @@
};
};
/**
/**
* 生命周期Create
* 生命周期created
*
* @memberof Register
*/
*/
public
created
()
{
public
created
()
{
this
.
setRules
();
this
.
setRules
();
}
}
/**
/**
*
挂载
*
生命周期mounted
*/
*/
public
mounted
()
{
public
mounted
()
{
// 从url获取授权code和state
// 从url获取授权code和state
...
@@ -159,8 +151,6 @@
...
@@ -159,8 +151,6 @@
/**
/**
* 监听语言变化
* 监听语言变化
*
* @memberof Login
*/
*/
@
Watch
(
'$i18n.locale'
)
@
Watch
(
'$i18n.locale'
)
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
...
@@ -169,8 +159,6 @@
...
@@ -169,8 +159,6 @@
/**
/**
* 跳转登录页面
* 跳转登录页面
*
* @memberof Register
*/
*/
public
goLogin
():
void
{
public
goLogin
():
void
{
const
_this
=
this
;
const
_this
=
this
;
...
...
app_web/src/components/login/login.vue
浏览文件 @
c90b4238
...
@@ -87,7 +87,6 @@
...
@@ -87,7 +87,6 @@
* 表单对象
* 表单对象
*
*
* @type {*}
* @type {*}
* @memberof Login
*/
*/
public
form
:
any
=
{
loginname
:
'ibzadmin'
,
password
:
'123456'
};
public
form
:
any
=
{
loginname
:
'ibzadmin'
,
password
:
'123456'
};
...
@@ -96,7 +95,6 @@
...
@@ -96,7 +95,6 @@
* 应用名称
* 应用名称
*
*
* @type {string}
* @type {string}
* @memberof Login
*/
*/
public
appTitle
:
string
=
Environment
.
AppTitle
;
public
appTitle
:
string
=
Environment
.
AppTitle
;
...
@@ -104,14 +102,12 @@
...
@@ -104,14 +102,12 @@
* 值规则
* 值规则
*
*
* @type {*}
* @type {*}
* @memberof Login
*/
*/
public
rules
=
{};
public
rules
=
{};
/**
/**
* 设置值规则
* 设置值规则
*
*
* @memberof Login
*/
*/
public
setRules
()
{
public
setRules
()
{
this
.
rules
=
{
this
.
rules
=
{
...
@@ -125,14 +121,15 @@
...
@@ -125,14 +121,15 @@
};
};
/**
/**
* 生命周期Create
* 生命周期created
*
* @memberof Login
*/
*/
public
created
()
{
public
created
()
{
this
.
setRules
();
this
.
setRules
();
}
}
/**
* 生命周期mounted
*/
public
mounted
()
{
public
mounted
()
{
if
(
this
.
getCookie
(
"loginname"
)
&&
this
.
getCookie
(
"loginname"
)
!==
'undefined'
)
{
if
(
this
.
getCookie
(
"loginname"
)
&&
this
.
getCookie
(
"loginname"
)
!==
'undefined'
)
{
this
.
form
.
loginname
=
this
.
getCookie
(
"loginname"
);
this
.
form
.
loginname
=
this
.
getCookie
(
"loginname"
);
...
@@ -150,8 +147,6 @@
...
@@ -150,8 +147,6 @@
/**
/**
* 监听语言变化
* 监听语言变化
*
* @memberof Login
*/
*/
@
Watch
(
'$i18n.locale'
)
@
Watch
(
'$i18n.locale'
)
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
...
@@ -160,8 +155,6 @@
...
@@ -160,8 +155,6 @@
/**
/**
* 登陆处理
* 登陆处理
*
* @memberof Login
*/
*/
public
handleSubmit
():
void
{
public
handleSubmit
():
void
{
const
form
:
any
=
this
.
$refs
.
loginForm
;
const
form
:
any
=
this
.
$refs
.
loginForm
;
...
@@ -214,8 +207,6 @@
...
@@ -214,8 +207,6 @@
/**
/**
* 重置页面
* 重置页面
*
* @memberof Login
*/
*/
public
goReset
():
void
{
public
goReset
():
void
{
const
_this
=
this
;
const
_this
=
this
;
...
@@ -224,6 +215,8 @@
...
@@ -224,6 +215,8 @@
/**
/**
* 跳转注册页面
* 跳转注册页面
*
* @memberof Login
*/
*/
public
goRegister
():
void
{
public
goRegister
():
void
{
const
_this
=
this
;
const
_this
=
this
;
...
@@ -435,8 +428,7 @@
...
@@ -435,8 +428,7 @@
// 截取地址,拼接需要部分组成新地址
// 截取地址,拼接需要部分组成新地址
const
scheme
=
window
.
location
.
protocol
;
const
scheme
=
window
.
location
.
protocol
;
const
host
=
window
.
location
.
host
;
const
host
=
window
.
location
.
host
;
let
baseUrl
:
any
;
let
baseUrl
:
any
=
scheme
+
"//"
+
host
;
baseUrl
=
scheme
+
"//"
+
host
;
const
port
=
window
.
location
.
port
;
const
port
=
window
.
location
.
port
;
if
(
port
)
{
if
(
port
)
{
if
(
port
==
'80'
||
port
==
'443'
)
{
if
(
port
==
'80'
||
port
==
'443'
)
{
...
@@ -447,7 +439,6 @@
...
@@ -447,7 +439,6 @@
}
else
{
}
else
{
baseUrl
+=
"/"
;
baseUrl
+=
"/"
;
}
}
// console.log(baseUrl);
return
baseUrl
;
return
baseUrl
;
}
}
...
...
app_web/src/components/login/qqLoginRedirect.vue
浏览文件 @
c90b4238
...
@@ -77,13 +77,12 @@
...
@@ -77,13 +77,12 @@
nickname
:
''
,
// QQ用户名称
nickname
:
''
,
// QQ用户名称
access_token
:
''
,
// 临时授权token
access_token
:
''
,
// 临时授权token
refresh_token
:
''
,
// 刷新授权token
refresh_token
:
''
,
// 刷新授权token
}
}
;
/**
/**
* 应用名称
* 应用名称
*
*
* @type {string}
* @type {string}
* @memberof Register
*/
*/
public
appTitle
:
string
=
Environment
.
AppTitle
;
public
appTitle
:
string
=
Environment
.
AppTitle
;
...
@@ -91,14 +90,11 @@
...
@@ -91,14 +90,11 @@
* 值规则
* 值规则
*
*
* @type {*}
* @type {*}
* @memberof Register
*/
*/
public
rules
=
{};
public
rules
=
{};
/**
/**
* 设置值规则
* 设置值规则
*
* @memberof Register
*/
*/
public
setRules
()
{
public
setRules
()
{
this
.
rules
=
{
this
.
rules
=
{
...
@@ -113,16 +109,14 @@
...
@@ -113,16 +109,14 @@
/**
/**
* 生命周期Create
* 生命周期created
*
* @memberof Register
*/
*/
public
created
()
{
public
created
()
{
this
.
setRules
();
this
.
setRules
();
}
}
/**
/**
*
挂载
*
生命周期mounted
*/
*/
public
mounted
()
{
public
mounted
()
{
// 从url获取授权code和state
// 从url获取授权code和state
...
@@ -156,8 +150,6 @@
...
@@ -156,8 +150,6 @@
/**
/**
* 监听语言变化
* 监听语言变化
*
* @memberof Login
*/
*/
@
Watch
(
'$i18n.locale'
)
@
Watch
(
'$i18n.locale'
)
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
...
@@ -166,8 +158,6 @@
...
@@ -166,8 +158,6 @@
/**
/**
* 跳转登录页面
* 跳转登录页面
*
* @memberof Register
*/
*/
public
goLogin
():
void
{
public
goLogin
():
void
{
const
_this
=
this
;
const
_this
=
this
;
...
...
app_web/src/components/login/weixinLoginRedirect.vue
浏览文件 @
c90b4238
...
@@ -68,11 +68,9 @@
...
@@ -68,11 +68,9 @@
public
canClick
:
any
=
true
;
public
canClick
:
any
=
true
;
// 按钮内容
// 按钮内容
public
BtnContent
:
any
=
"注册并绑定微信"
;
public
BtnContent
:
any
=
"注册并绑定微信"
;
// 微信授权成功返回的code和state
// 微信授权成功返回的code和state
public
code
:
any
;
public
code
:
any
;
public
state
:
any
;
public
state
:
any
;
// 微信用户信息
// 微信用户信息
public
wechatUserInfo
:
any
=
{
public
wechatUserInfo
:
any
=
{
openid
:
''
,
//微信用户身份的唯一标识
openid
:
''
,
//微信用户身份的唯一标识
...
@@ -80,13 +78,12 @@
...
@@ -80,13 +78,12 @@
access_token
:
''
,
// 临时授权token
access_token
:
''
,
// 临时授权token
refresh_token
:
''
,
// 刷新授权token
refresh_token
:
''
,
// 刷新授权token
unionid
:
''
,
//微信用户唯一标识
unionid
:
''
,
//微信用户唯一标识
}
}
;
/**
/**
* 应用名称
* 应用名称
*
*
* @type {string}
* @type {string}
* @memberof Register
*/
*/
public
appTitle
:
string
=
Environment
.
AppTitle
;
public
appTitle
:
string
=
Environment
.
AppTitle
;
...
@@ -94,7 +91,6 @@
...
@@ -94,7 +91,6 @@
* 值规则
* 值规则
*
*
* @type {*}
* @type {*}
* @memberof Register
*/
*/
public
rules
=
{};
public
rules
=
{};
...
@@ -115,16 +111,14 @@
...
@@ -115,16 +111,14 @@
};
};
/**
/**
* 生命周期Create
* 生命周期created
*
* @memberof Register
*/
*/
public
created
()
{
public
created
()
{
this
.
setRules
();
this
.
setRules
();
}
}
/**
/**
*
挂载
*
生命周期mounted
*/
*/
public
mounted
()
{
public
mounted
()
{
// 从url获取授权code和state
// 从url获取授权code和state
...
@@ -162,8 +156,6 @@
...
@@ -162,8 +156,6 @@
/**
/**
* 监听语言变化
* 监听语言变化
*
* @memberof Login
*/
*/
@
Watch
(
'$i18n.locale'
)
@
Watch
(
'$i18n.locale'
)
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
onLocaleChange
(
newval
:
any
,
val
:
any
)
{
...
@@ -172,8 +164,6 @@
...
@@ -172,8 +164,6 @@
/**
/**
* 跳转登录页面
* 跳转登录页面
*
* @memberof Register
*/
*/
public
goLogin
():
void
{
public
goLogin
():
void
{
const
_this
=
this
;
const
_this
=
this
;
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录