Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
2015-11-04 01:03:24 +0800
Commit
72b8231d0dc0499c9b49c06ecf20f8c31a4e50b9
1 parent
38c5458f
过滤掉newsale搜索传参中值为0或者null的参数
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
library/LibModels/Wap/Product/NewsaleData.php
library/LibModels/Wap/Product/NewsaleData.php
View file @
72b8231
...
...
@@ -95,7 +95,7 @@ class NewsaleData
);
// 拉取筛选参数
$queriedParams
=
array_filter
(
$selectItems
,
function
(
$v
)
{
return
$v
!==
null
;
return
!
empty
(
$v
)
;
});
$param
=
Yohobuy
::
param
();
...
...
Please
register
or
login
to post a comment