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
周少峰
9 years ago
Commit
b7980ca891821e28d46fa5aa0a36b6be809dac73
1 parent
c46aa206
add branchsearch records
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
compile/m.yohobuy.com/1.3.22/test.php
compile/m.yohobuy.com/1.3.22/test2.php
library/LibModels/Wap/Category/BrandData.php
yohobuy/m.yohobuy.com/application/modules/Category/controllers/Brand.php
compile/m.yohobuy.com/1.3.22/test.php
deleted
100644 → 0
View file @
c46aa20
compile/m.yohobuy.com/1.3.22/test2.php
deleted
100644 → 0
View file @
c46aa20
library/LibModels/Wap/Category/BrandData.php
View file @
b7980ca
...
...
@@ -266,7 +266,7 @@ class BrandData
public
static
function
branchSearchHistory
(
$uid
,
$records
=
''
)
{
$param
=
Yohobuy
::
param
();
$param
[
'method'
]
=
'
web.brand.folder
'
;
$param
[
'method'
]
=
'
app.search.hotBrandRecords
'
;
$param
[
'uid'
]
=
$uid
;
if
(
$records
)
{
$param
[
'records'
]
=
$records
;
...
...
yohobuy/m.yohobuy.com/application/modules/Category/controllers/Brand.php
View file @
b7980ca
...
...
@@ -82,12 +82,12 @@ class BrandController extends AbstractAction
{
$result
=
array
();
$uid
=
$this
->
getUid
();
$brand
Id
=
$this
->
get
(
'brand_id
'
);
$brand
Name
=
$this
->
get
(
'brandNme
'
);
do
{
if
(
!
$this
->
isAjax
()
||
empty
(
$brandId
))
{
break
;
}
$records
=
$uid
.
'_'
.
$brandId
;
$records
=
time
()
.
'_'
.
$brandName
;
$result
=
BrandData
::
branchSearchHistory
(
$uid
,
$records
);
}
while
(
false
);
...
...
Please
register
or
login
to post a comment