Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
yyqing
9 years ago
Commit
a6dc9d8d5200fcc9067d3aa4eba0266d2010721a
1 parent
68a19179
简单头部登陆状态同步 :review by @杨延青
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
93 additions
and
1 deletions
web-static/js/simple-header.js
web-static/js/simple-header.js
View file @
a6dc9d8
...
...
@@ -6,4 +6,96 @@ if ($('.simple-header').size() > 0) {
}).
on
(
'mouseleave'
,
function
()
{
$
(
this
).
find
(
'.tool-select'
).
fadeOut
();
});
}
\ No newline at end of file
}
/**
* 格式化用户名
* @return {[type]} [description]
*/
function
formatUsernName
(
userName
)
{
var
name
,
char
,
_num
=
0
,
_length
=
0
,
t
;
for
(
t
=
0
;
t
<
userName
.
length
;
t
++
)
{
char
=
userName
.
substr
(
t
,
1
);
if
(
/.*
[\u
4e00-
\u
9fa5
]
+.*$/
.
test
(
char
))
{
_length
+=
2
;
}
else
{
_length
+=
1
;
}
}
if
(
_length
<=
10
)
{
name
=
userName
;
}
else
{
_num
=
0
;
name
=
''
;
for
(
t
=
0
;
t
<
userName
.
length
;
t
++
)
{
if
(
_num
<
10
)
{
char
=
userName
.
substr
(
t
,
1
);
if
(
char
!==
'*'
)
{
if
(
/.*
[\u
4e00-
\u
9fa5
]
+.*$/
.
test
(
char
))
{
_num
+=
2
;
}
else
{
_num
+=
1
;
}
}
name
+=
char
;
}
}
if
(
name
.
length
<
userName
.
length
)
{
name
+=
'...'
;
}
}
return
name
;
}
/**
* 设置简单头部登陆状态
* @return {[type]} [description]
*/
function
setLoginStatus
(
_data
)
{
var
loginHtml
,
name
;
if
(
_data
&&
_data
.
href
&&
_data
.
href
.
user
)
{
name
=
formatUsernName
(
_data
.
href
.
user
);
loginHtml
=
'<span>Hi~</span><a href="">'
+
name
+
'</a> <a href="'
+
_data
.
href
.
logout
+
'">[退出]</a>'
;
}
else
{
name
=
formatUsernName
(
_data
.
user
);
loginHtml
=
'<span>Hi~</span><a href="">'
+
name
+
'</a> <a href="http://www.yohobuy.com/signin.html">[请登录]</a>'
+
'<a href="http://www.yohobuy.com/reg.html">[免费注册]</a>'
;
}
$
(
'.header-tool li'
).
eq
(
0
).
html
(
loginHtml
);
}
/**
* 获取登录信息
* @return {[type]} [description]
*/
function
actionLoginInfo
()
{
$
.
ajax
({
type
:
'GET'
,
url
:
'/common/getSimpleHeader'
,
data
:
{},
success
:
function
(
data
)
{
if
(
data
.
code
===
200
)
{
setLoginStatus
(
data
.
data
);
}
}
});
}
/**
* 初始化函数
* @return {[type]} [description]
*/
function
init
()
{
actionLoginInfo
();
//获取登录信息
}
init
();
\ No newline at end of file
...
...
Please
register
or
login
to post a comment