|
@@ -504,12 +504,19 @@ var vm = new Vue({
|
|
|
$('#go-customer-4').trigger('click')
|
|
|
},
|
|
|
toDetail: function (id) {
|
|
|
- if (this.powerInfo.vip > 1) {
|
|
|
- // 去超级订阅画像
|
|
|
- window.open('/swordfish/page_big_pc/svip/ent_ser_portrait/' + id)
|
|
|
+ // 去超级订阅画像
|
|
|
+ var svipLink = '/swordfish/page_big_pc/svip/ent_ser_portrait/' + id
|
|
|
+ // 大会员画像
|
|
|
+ var memberLink = '/swordfish/page_big_pc/ent_portrait/' + id
|
|
|
+
|
|
|
+ if (this.powerInfo.member) {
|
|
|
+ if (this.powerInfo.vip > 0) {
|
|
|
+ window.open(svipLink)
|
|
|
+ } else {
|
|
|
+ window.open(memberLink)
|
|
|
+ }
|
|
|
} else {
|
|
|
- // 去大会员画像
|
|
|
- window.open('/swordfish/page_big_pc/ent_portrait/' + id)
|
|
|
+ window.open(svipLink)
|
|
|
}
|
|
|
},
|
|
|
calcListItemForCap: function (p) {
|