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
Plain Diff
Browse Files
Authored by
毕凯
9 years ago
Commit
7531a2f55ad4a1ae52bccc415388ac13ceca4f13
2 parents
f8309922
97d7d9d8
Merge remote-tracking branch 'origin/feature/wap326' into feature/wap/postcss
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
2 deletions
library/LibModels/Wap/Home/UserData.php
yohobuy/m.yohobuy.com/application/controllers/Home.php
yohobuy/m.yohobuy.com/application/models/Index/User.php
library/LibModels/Wap/Home/UserData.php
View file @
7531a2f
...
...
@@ -35,6 +35,20 @@ class UserData
}
/**
* 获取个人中心公告有关数据
*
* @return mixed
*/
public
static
function
noticeData
()
{
$param
=
Yohobuy
::
param
();
$param
[
'method'
]
=
'app.resources.getNotices'
;
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
return
Yohobuy
::
get
(
Yohobuy
::
API_URL
,
$param
);
}
/**
* 个人中心页面优惠券,收藏的商品等的数目数据
*
* @param int $uid 用户ID
...
...
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
7531a2f
...
...
@@ -27,7 +27,7 @@ class HomeController extends AbstractAction
/**
* 通过当前用户审判是否跳到登录
*
* @param
int
$useSession (true:从服务端session中检查, false:从客户端cookie中检查)
* @param
boolean
$useSession (true:从服务端session中检查, false:从客户端cookie中检查)
* @return void
*/
protected
function
auditJumpLogin
(
$useSession
=
true
)
...
...
@@ -51,6 +51,7 @@ class HomeController extends AbstractAction
'myIndexPage'
=>
true
,
'showDownloadApp'
=>
true
,
'navHome'
=>
true
,
// 'notice' => UserModel::getNoticeData(),
'pageFooter'
=>
true
,
'cartUrl'
=>
Helpers
::
url
(
'/cart/index/index'
,
null
),
'signinUrl'
=>
Helpers
::
url
(
'/signin.html'
,
array
(
'refer'
=>
Helpers
::
url
(
'/home'
))),
...
...
@@ -469,7 +470,7 @@ class HomeController extends AbstractAction
$info
=
'userId='
.
$uid
.
'&name='
.
$this
->
_uname
.
'&memo=&hashCode='
.
md5
(
strtoupper
(
rawurlencode
(
$uid
.
$this
->
_uname
.
$time
.
'1231'
)
)
)
.
'×tamp='
.
$time
;
$serviceUrl
.=
rawurlencode
(
$info
);
}
$this
->
_view
->
display
(
'online-service'
,
array
(
'onlineServicePage'
=>
true
,
'pageFooter'
=>
true
,
...
...
yohobuy/m.yohobuy.com/application/models/Index/User.php
View file @
7531a2f
...
...
@@ -45,6 +45,26 @@ class UserModel
}
/**
* 获取个人中心公告有关数据
*
* @return array
*/
public
static
function
getNoticeData
()
{
$result
=
array
();
$notice
=
UserData
::
noticeData
();
// 处理数据
if
(
isset
(
$notice
[
'data'
])
&&
!
empty
(
$notice
[
'data'
]))
{
$result
=
$notice
[
'data'
];
$result
[
'open'
]
=
(
$result
[
'open'
]
===
'Y'
);
}
return
$result
;
}
/**
* 处理个人中心页面优惠券,收藏的商品等的数目数据
*
* @param int $uid 用户ID
...
...
Please
register
or
login
to post a comment