|
@@ -1800,10 +1800,18 @@ var vm = new Vue({
|
|
|
},
|
|
|
toSubManage: function () {
|
|
|
this.isWeixin = utils.isWeiXinBrowser
|
|
|
+ let rootlink = 'f'
|
|
|
+ if (this.powerInfo.memberStatus > 0) {
|
|
|
+ rootlink = 'm'
|
|
|
+ } else if (this.powerInfo.vipStatus > 0) {
|
|
|
+ rootlink = 'v'
|
|
|
+ } else {
|
|
|
+ rootlink = 'f'
|
|
|
+ }
|
|
|
if(this.isWeixin) {
|
|
|
- location.href = '/front/vipsubscribe/toSetKeyWordPage?vSwitch=m'
|
|
|
+ location.href = '/front/vipsubscribe/toSetKeyWordPage?vSwitch=' + rootlink
|
|
|
} else {
|
|
|
- location.href = '/jyapp/vipsubscribe/toSetKeyWordPage?vSwitch=m'
|
|
|
+ location.href = '/jyapp/vipsubscribe/toSetKeyWordPage?vSwitch=' + rootlink
|
|
|
}
|
|
|
},
|
|
|
toArticleContent (item) {
|