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
陈峰
2018-03-13 19:15:41 +0800
Commit
b02f5d7ddf180a4198a9b2bddc2a7587c6f05791
2 parents
c7d8d5c9
5594124f
Merge branch 'release/6.5.1' into 'master'
commit See merge request
!74
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
src/components/links/product-link.vue
src/components/resources/resource-box.vue
src/pages/channel/home/home.vue
src/pages/product/search/search.vue
src/components/links/product-link.vue
View file @
b02f5d7
...
...
@@ -32,7 +32,7 @@ export default {
let {product_skn} = product;
let href = `/product/pro_${product_skn}.html`;
if (this.yoho.env.isYohoBuy) {
if (
(this.$yoho && this.$yoho.isYohoBuy) ||
this.yoho.env.isYohoBuy) {
let goParams = {
action: 'go.productDetail',
params: {
...
...
src/components/resources/resource-box.vue
View file @
b02f5d7
...
...
@@ -27,7 +27,7 @@ export default {
}
},
['yoho.visible'](visible) {
if (visible && this.
yoho.env
.isiOS) {
if (visible && this.
$yoho && this.$yoho
.isiOS) {
this.checkReport(void 0, true);
}
}
...
...
src/pages/channel/home/home.vue
View file @
b02f5d7
...
...
@@ -122,7 +122,7 @@ export default {
ResourceBox
},
mounted() {
if (this.
yoho.env
.isAndroid) {
if (this.
$yoho
.isAndroid) {
let appVersion = this.$cookie.get('app_version');
if (appVersion && typeof appVersion === 'string') {
...
...
src/pages/product/search/search.vue
View file @
b02f5d7
...
...
@@ -36,7 +36,7 @@ export default {
$appLink.href = url;
$appLink.click();
if (this.
yoho.env
.isiOS) {
if (this.
$yoho
.isiOS) {
$appLink.click();
}
}
...
...
Please
register
or
login
to post a comment