product-link.vue
1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<template>
<a-link :href="href" :yas="yas" :yas-f="yasF" :yas-i="yasI">
<slot></slot>
</a-link>
</template>
<script>
import {mapState} from 'vuex';
export default {
name: 'ProductLink',
data() {
return {
href: ''
};
},
props: {
value: [Object],
yas: Object,
yasF: Number,
yasI: Number
},
computed: {
...mapState(['yoho'])
},
created() {
if (this.value) {
this.getLink(this.value);
}
},
methods: {
getLink(product) {
let {product_skn} = product;
let href = `/product/pro_${product_skn}.html`;
const pageNameMap = {
'channel.home': 'FP_BLK_Home_h5',
'channel.channelHome.channelMen': 'FP_BLK_MenHome_h5',
'channel.channelHome.channelWomen': 'FP_BLK_WomenHome_h5'
};
let from_page_name = this.$route.name;
if (this.yoho) {
const prefix = this.yoho.env.isiOS ? 'i' : (this.yoho.env.isAndroid ? 'a' : '');
from_page_name = pageNameMap[this.$route.name] ? `${prefix}${pageNameMap[this.$route.name]}` :
this.$route.name;
}
if ((this.$yoho && this.$yoho.isYohoBuy) || this.yoho.env.isYohoBuy) {
let goParams = {
action: 'go.productDetail',
params: {
product_skn: product_skn,
from_page_name: from_page_name,
from_page_param: this.$route.query
}
};
href += `?openby:yohobuy=${JSON.stringify(goParams)}`;
}
this.href = href;
}
},
watch: {
value(val) {
if (val) {
this.getLink(val);
}
}
}
};
</script>
<style>
</style>