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
whb
9 years ago
Commit
bb72facf5a3703112ec8feb07e840d3b2ad25ff0
1 parent
46505028
限购商品详情页添加分享
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
template/m.yohobuy.com/actions/product/detail/limit.phtml
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Detail.php
template/m.yohobuy.com/actions/product/detail/limit.phtml
View file @
bb72fac
...
...
@@ -52,6 +52,19 @@
<span>抢购超级限量款</span>
</div>
</div>
{
{#wxshare
}
}
<script
type=
"text/javascript"
src=
"//res.wx.qq.com/open/js/jweixin-1.0.0.js"
></script>
<input
id=
"shareLink"
type=
"hidden"
value=
"{{shareLink}}"
>
<input
id=
"shareImg"
type=
"hidden"
value=
"{{shareImg}}"
>
<input
id=
"shareTitle"
type=
"hidden"
value=
"{{shareTitle}}"
>
<input
id=
"shareDesc"
type=
"hidden"
value=
"{{shareDesc}}"
>
{
{/wxshare
}
}
</div>
{
{>
layout/footer
}
}
<script
type=
"text/javascript"
>
seajs.use('js/plugin/wx-share',
function(share)
{
share();
}
);
</script>
...
...
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Detail.php
View file @
bb72fac
...
...
@@ -306,10 +306,14 @@ class DetailController extends AbstractAction
if
(
empty
(
$data
))
{
$this
->
error
();
}
// APP下载链接地址
$data
[
'appSrc'
]
=
'http://a.app.qq.com/o/simple.jsp?pkgname=com.yoho'
;
$data
[
'wxshare'
]
=
array
(
'shareLink'
=>
Helpers
::
url
(
'/product/detail/limit'
,
array
(
'code'
=>
$productCode
),
'default'
),
'shareImg'
=>
$data
[
'banner'
],
'shareTitle'
=>
$data
[
'name'
],
'shareDesc'
=>
'我在Yoho!Buy有货发现了一个限定发售商品'
,
);
$this
->
_view
->
display
(
'limit'
,
$data
);
}
...
...
Please
register
or
login
to post a comment