Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
112efffb
提交
112efffb
编写于
5月 26, 2021
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
登录设置cookie
上级
594b4509
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
92 行增加
和
3 行删除
+92
-3
login.vue
src/components/login/login.vue
+15
-3
app-setting.vue
src/ibiz-core/components/app-setting/app-setting.vue
+5
-0
util.ts
src/ibiz-core/utils/util/util.ts
+72
-0
未找到文件。
src/components/login/login.vue
浏览文件 @
112efffb
...
...
@@ -37,8 +37,9 @@
import
{
Vue
,
Component
}
from
"vue-property-decorator"
;
import
{
Loading
}
from
'@/ibiz-core/utils'
;
import
{
Environment
}
from
'@/environments/environment'
;
import
{
ThirdPartyService
}
from
'@ibiz-core'
import
{
ThirdPartyService
}
from
'@ibiz-core'
;
import
{
DingTalkService
}
from
'../../ibiz-core/third-party-service/DingTalkService'
;
import
{
Util
}
from
'@/ibiz-core/utils'
;
@
Component
({
components
:
{},
i18n
:
{
...
...
@@ -183,8 +184,19 @@ export default class Login extends Vue {
if
(
response
&&
response
.
status
===
200
)
{
this
.
isLoadding
=
false
;
const
data
=
response
.
data
;
localStorage
.
setItem
(
"token"
,
data
.
token
);
localStorage
.
setItem
(
"user"
,
JSON
.
stringify
(
data
.
user
));
if
(
data
&&
data
.
token
)
{
Util
.
setCookie
(
'ibzuaa-token'
,
data
.
token
,
7
,
true
);
localStorage
.
setItem
(
"token"
,
data
.
token
);
}
if
(
data
&&
data
.
user
)
{
localStorage
.
setItem
(
'user'
,
JSON
.
stringify
(
data
.
user
));
}
if
(
data
&&
data
.
user
&&
data
.
user
.
orgid
)
{
Util
.
setCookie
(
'srforgid'
,
data
.
user
.
orgid
,
7
,
true
);
sessionStorage
.
setItem
(
'tempOrgId'
,
data
.
user
.
orgid
);
}
Util
.
setCookie
(
'srfsystemid'
,
'iBizPortal'
,
7
,
true
);
// 跳转首页
const
url
:
any
=
this
.
$route
.
query
.
redirect
?
this
.
$route
.
query
.
redirect
:
"*"
;
...
...
src/ibiz-core/components/app-setting/app-setting.vue
浏览文件 @
112efffb
...
...
@@ -91,6 +91,7 @@
import
{
Vue
,
Component
,
Prop
,
Provide
,
Emit
,
Watch
,
}
from
"vue-property-decorator"
;
import
{
settingConfig
}
from
"./config"
;
import
i18n
from
'@/locale'
import
{
Util
}
from
'@/ibiz-core/utils'
;
@
Component
({
components
:
{},
})
...
...
@@ -239,6 +240,10 @@ export default class AppSetting extends Vue {
if
(
localStorage
.
getItem
(
"token"
))
{
localStorage
.
removeItem
(
"token"
);
}
// 清除cookie
Util
.
clearCookie
(
'ibzuaa-token'
,
true
);
Util
.
clearCookie
(
'srforgid'
,
true
);
Util
.
clearCookie
(
'srfsystemid'
,
true
);
this
.
$router
.
push
({
name
:
"login"
});
}
...
...
src/ibiz-core/utils/util/util.ts
浏览文件 @
112efffb
...
...
@@ -358,4 +358,76 @@ export class Util {
return
fmt
;
}
/**
* 设置cookie
*
* @static
* @param {*} name 名称
* @param {*} value 值
* @param {*} day 过期天数
* @param {boolean} [isDomain=false] 是否设置在主域下
* @param {string} [path='/'] 默认归属路径
* @memberof Util
*/
public
static
setCookie
(
name
:
string
,
value
:
string
,
day
:
number
=
0
,
isDomain
:
boolean
=
false
,
path
:
string
=
'/'
):
void
{
let
domain
=
''
;
// 设置cookie到主域下
if
(
isDomain
)
{
// 是否为ip正则
const
regExpr
=
/^
(
25
[
0-5
]
|2
[
0-4
]\d
|
[
0-1
]\d{2}
|
[
1-9
]?\d)\.(
25
[
0-5
]
|2
[
0-4
]\d
|
[
0-1
]\d{2}
|
[
1-9
]?\d)\.(
25
[
0-5
]
|2
[
0-4
]\d
|
[
0-1
]\d{2}
|
[
1-9
]?\d)\.(
25
[
0-5
]
|2
[
0-4
]\d
|
[
0-1
]\d{2}
|
[
1-9
]?\d)
$/
;
// 为ip时忽略
if
(
!
regExpr
.
test
(
location
.
hostname
))
{
const
host
=
location
.
hostname
;
if
(
host
.
indexOf
(
'.'
)
!==
host
.
lastIndexOf
(
'.'
))
{
domain
=
';domain='
+
host
.
substring
(
host
.
indexOf
(
'.'
),
host
.
length
);
}
}
}
if
(
day
!==
0
)
{
//当设置的时间等于0时,不设置expires属性,cookie在浏览器关闭后删除
const
expires
=
day
*
24
*
60
*
60
*
1000
;
const
date
=
new
Date
(
new
Date
().
getTime
()
+
expires
);
document
.
cookie
=
`
${
name
}
=
${
escape
(
value
)}
;path=
${
path
}
;expires=
${
date
.
toUTCString
()}${
domain
}
`
;
}
else
{
document
.
cookie
=
`
${
name
}
=
${
escape
(
value
)}
;path=
${
path
}${
domain
}
`
;
}
}
/**
* 清除cookie
*
* @static
* @param {string} cookieName
* @param {boolean} [isDomain] 是否在主域下
* @memberof Util
*/
public
static
clearCookie
(
cookieName
:
string
,
isDomain
?:
boolean
)
{
this
.
setCookie
(
cookieName
,
''
,
-
1
,
isDomain
);
}
/**
* 获取cookie
*
* @static
* @param {string} name
* @return {*} {*}
* @memberof Util
*/
public
static
getCookie
(
name
:
string
):
string
{
const
reg
=
new
RegExp
(
'(^| )'
+
name
+
'=([^;]*)(;|$)'
);
const
arr
=
document
.
cookie
.
match
(
reg
);
if
(
arr
&&
arr
.
length
>
1
)
{
return
unescape
(
arr
[
2
]);
}
else
{
return
''
;
}
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录