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
fc96618e8cdc2c6cd8f0a5e9cb9b448b2784f71f
1 parent
f05a9ed0
双头部问题
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
library/Plugin/Helpers.php
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Info.php
library/Plugin/Helpers.php
View file @
fc96618
...
...
@@ -344,12 +344,12 @@ class Helpers
if
(
!
isset
(
$articleData
[
'id'
]))
{
return
false
;
}
$result
=
array
();
$result
[
'id'
]
=
$articleData
[
'id'
];
$result
[
'showTags'
]
=
$showTag
;
$result
[
'img'
]
=
isset
(
$articleData
[
'src'
])
?
self
::
getImageUrl
(
$articleData
[
'src'
],
640
,
640
)
:
''
;
$result
[
'url'
]
=
$articleData
[
'url'
];
//$isApp ? $articleData['url'] : self::url('/info/index', array('id' => $articleData['id']), 'guang');
//逛详情页app跳转url处理 20160601
$result
[
'url'
]
=
$articleData
[
'url'
]
.
'&openby:yohobuy={"action":"go.h5","params":{"param":{"id":"'
.
$articleData
[
'id'
]
.
'"},"shareparam":{"id":"'
.
$articleData
[
'id'
]
.
'"},"share":"/guang/api/v1/share/guang","id":'
.
$articleData
[
'id'
]
.
',"type":1,"url":"'
.
self
::
url
(
'/info/index'
,
array
(),
'guang'
)
.
'","islogin":"N"}}'
;
$result
[
'title'
]
=
$articleData
[
'title'
];
$result
[
'text'
]
=
$articleData
[
'intro'
];
$result
[
'publishTime'
]
=
$articleData
[
'publish_time'
];
...
...
@@ -376,6 +376,8 @@ class Helpers
if
(
!
$isApp
)
{
$articleData
[
'author'
][
'url'
]
=
Helpers
::
getFilterUrl
(
$articleData
[
'author'
][
'url'
]);
}
//编辑人员 app跳转url处理 20160601
$articleData
[
'author'
][
'url'
]
.=
'&openby:yohobuy={"action":"go.h5","params":{"param":{"id":"'
.
$articleData
[
'author'
][
'author_id'
]
.
'"},"share":"","id":'
.
$articleData
[
'author'
][
'author_id'
]
.
',"type":0,"islogin":"N","url":"'
.
self
::
url
(
'/author/index'
,
array
(),
'guang'
)
.
'"}}'
;
$result
[
'author'
]
=
$articleData
[
'author'
];
if
(
isset
(
$result
[
'author'
][
'avatar'
]))
{
$result
[
'author'
][
'avatar'
]
=
strtr
(
$result
[
'author'
][
'avatar'
],
array
(
'http://'
=>
'//'
));
...
...
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Info.php
View file @
fc96618
...
...
@@ -58,7 +58,10 @@ class InfoController extends AbstractAction
$data
[
'guang'
][
'author'
][
'avatar'
]
=
strtr
(
$detail
[
'getAuthor'
][
'avatar'
],
array
(
'http://'
=>
'//'
));
$data
[
'guang'
][
'author'
][
'name'
]
=
$detail
[
'getAuthor'
][
'name'
];
$data
[
'guang'
][
'author'
][
'intro'
]
=
$detail
[
'getAuthor'
][
'author_desc'
];
$data
[
'guang'
][
'author'
][
'url'
]
=
$isApp
?
$detail
[
'getAuthor'
][
'url'
]
:
Helpers
::
url
(
'/author/index'
,
array
(
'id'
=>
$detail
[
'getArticle'
][
'author_id'
]),
'guang'
);
//guang双头部的问题 20160601
$authorTmp
=
explode
(
"?id="
,
$detail
[
'getAuthor'
][
'url'
]);
$authorId
=
$authorTmp
[
1
];
$data
[
'guang'
][
'author'
][
'url'
]
=
$detail
[
'getAuthor'
][
'url'
]
.
'&openby:yohobuy={"action":"go.h5","params":{"param":{"id":"'
.
$authorId
.
'"},"share":"","id":'
.
$authorId
.
',"type":0,"islogin":"N","url":"'
.
Helpers
::
url
(
'/author/index'
,
array
(),
'guang'
)
.
'"}}'
;
}
$data
[
'detail'
]
=
array
();
...
...
Please
register
or
login
to post a comment