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
xiaowei
9 years ago
Commit
5a8f26ea704d9aced74a4c5b51961713b8a12a88
1 parent
fce005df
YW-1680 在线客服标题问题
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
yohobuy/m.yohobuy.com/application/controllers/Home.php
yohobuy/m.yohobuy.com/application/models/Home/Online.php
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
5a8f26e
...
...
@@ -466,8 +466,10 @@ class HomeController extends AbstractAction
*/
public
function
onlineServiceDetailAction
()
{
$cateId
=
$this
->
get
(
'cateId'
,
0
);
$cateName
=
$this
->
get
(
'cateName'
,
''
);
$cateInfo
=
$this
->
get
(
'cateInfo'
,
''
);
$cate
=
explode
(
"_"
,
$cateInfo
);
$cateId
=
intval
(
$cate
[
0
]);
$cateName
=
$cate
[
1
];
if
(
$cateId
>
0
)
{
$service
=
Home\OnlineModel
::
getOnlineServiceDetail
(
$cateId
);
}
...
...
yohobuy/m.yohobuy.com/application/models/Home/Online.php
View file @
5a8f26e
...
...
@@ -39,7 +39,7 @@ class OnlineModel
if
(
$sub
)
{
foreach
(
$sub
as
$sk
=>
$sv
)
{
$qTmp
[
$sk
][
'title'
]
=
$sv
[
'category_name'
];
$qTmp
[
$sk
][
'link'
]
=
Helpers
::
url
(
'/home/onlineservicedetail'
,
array
(
'cateI
d'
=>
$sv
[
'id'
],
'cateName'
=>
$sv
[
'category_name'
]));
$qTmp
[
$sk
][
'link'
]
=
Helpers
::
url
(
'/home/onlineservicedetail'
,
array
(
'cateI
nfo'
=>
$sv
[
'id'
]
.
'_'
.
$sv
[
'category_name'
]));
}
}
$question
[
$key
][
'list'
]
=
$qTmp
;
...
...
Please
register
or
login
to post a comment