Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
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
Plain Diff
Browse Files
Authored by
郭成尧
9 years ago
Commit
45609840be6c562b6eb6901569d8f35b266d0695
2 parents
e4bce4de
492b4835
Merge branch 'develop' of git.yoho.cn:fe/yohoblk-wap into develop
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
6 deletions
public/js/common/share.js
public/vue/product/detail/index.vue
public/js/common/share.js
View file @
4560984
...
...
@@ -69,10 +69,12 @@ $.ajax({
});
module
.
exports
=
(
shareData
)
=>
{
window
.
wx
.
ready
(
function
()
{
window
.
wx
.
onMenuShareAppMessage
(
shareData
);
window
.
wx
.
onMenuShareTimeline
(
shareData
);
window
.
wx
.
onMenuShareQQ
(
shareData
);
window
.
wx
.
onMenuShareWeibo
(
shareData
);
});
if
(
window
.
wx
)
{
window
.
wx
.
ready
(
function
()
{
window
.
wx
.
onMenuShareAppMessage
(
shareData
);
window
.
wx
.
onMenuShareTimeline
(
shareData
);
window
.
wx
.
onMenuShareQQ
(
shareData
);
window
.
wx
.
onMenuShareWeibo
(
shareData
);
});
}
};
...
...
public/vue/product/detail/index.vue
View file @
4560984
...
...
@@ -396,6 +396,7 @@
const app = $('#app');
const tip = require('common/tip');
const yoho = require('yoho');
const share = require('common/share');
require('yoho-vue-swipe/dist/vue-swipe.css');
...
...
@@ -525,6 +526,21 @@
}
});
share({
title: this.entity.productName,
link: location.href,
desc: '我在BLK发现了一个不错的商品,快来看看吧!',
imgUrl: this.firstImage.replace(/(\{width}|\{height}|\{mode})/g, function($0) {
const dict = {
'{width}': 300,
'{height}': 300,
'{mode}': 2
};
return dict[$0];
})
});
return result;
}).then((result)=> {
loadIntroDeferred = () => {
...
...
Please
register
or
login
to post a comment