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
f50b33d33d6af8e0f5c1f5f9b7c6ef90f6a17747
1 parent
d7fbd87e
app tips
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
yohobuy/m.yohobuy.com/application/controllers/Search.php
yohobuy/m.yohobuy.com/application/controllers/Search.php
View file @
f50b33d
...
...
@@ -233,8 +233,8 @@ class SearchController extends AbstractAction
if
(
isset
(
$condition
[
'students'
]))
{
// 获取用户信息判断是否为学生
// 获取用户信息判断是否为学生
$data
[
'students'
]
=
Helpers
::
url
(
'/activity/student/register'
);
if
(
$uid
)
{
$userInfo
=
UserData
::
userData
(
$uid
);
...
...
@@ -243,12 +243,15 @@ class SearchController extends AbstractAction
}
}
$data
[
'showDownloadApp'
]
=
false
;
if
(
$isApp
)
{
//判断app版本是否低于4.9.1,用于显示下方的提示
$appVersion
=
str_replace
(
'.'
,
''
,
$this
->
get
(
'app_version'
));
if
(
intval
(
substr
(
$appVersion
,
0
,
3
))
<
491
)
{
$data
[
'oldApp'
]
=
true
;
}
}
}
//判断app版本是否低于4.9.1,用于显示下方的提示
$appVersion
=
str_replace
(
'.'
,
''
,
$this
->
get
(
'app_version'
));
if
(
intval
(
substr
(
$appVersion
,
0
,
3
))
<
491
)
{
$data
[
'oldApp'
]
=
true
;
}
$this
->
_view
->
display
(
'list'
,
$data
);
}
...
...
Please
register
or
login
to post a comment