|
@@ -103,7 +103,8 @@ var vNode = {
|
|
|
gotTab2: false, // 是否已经获取到tab2的数据了
|
|
|
svip: false, // 判断是否是超级订阅的企业画像
|
|
|
digshow: false, // 判断是否是超级订阅会员
|
|
|
- overlayShow: true // 弹窗遮罩是否显示
|
|
|
+ overlayShow: true, // 弹窗遮罩是否显示
|
|
|
+ isfree: false // 是否是免费用户
|
|
|
}
|
|
|
},
|
|
|
created: function () {
|
|
@@ -121,6 +122,7 @@ var vNode = {
|
|
|
this.entInfo.name = ''
|
|
|
this.restore = this.reStoreState()
|
|
|
if (!this.restore) {
|
|
|
+ this.getUserRoot()
|
|
|
this.getPowerInfo()
|
|
|
// 获取企业基本信息
|
|
|
this.getEntBaseInfo()
|
|
@@ -463,6 +465,31 @@ var vNode = {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ // 判断是否是免费用户
|
|
|
+ getUserRoot: function() {
|
|
|
+ let _this = this
|
|
|
+ $.ajax({
|
|
|
+ url: '/publicapply/bidcoll/power',
|
|
|
+ type: 'POST',
|
|
|
+ success: function(res) {
|
|
|
+ // 如果不是超级订阅会员,获取免费用户关键词
|
|
|
+ if(res.data.member || res.data.entniche || res.data.vip > 0) {
|
|
|
+ _this.isfree = false
|
|
|
+ } else {
|
|
|
+ _this.singleTab = false
|
|
|
+ _this.digshow = true
|
|
|
+ _this.isfree = true
|
|
|
+ }
|
|
|
+ // 如果只是商机管理用户,不能看企业画像中标信息
|
|
|
+ if(res.data.entniche) {
|
|
|
+ if(!res.data.member && res.data.vip < 0) {
|
|
|
+ _this.singleTab = false
|
|
|
+ _this.digshow = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
// 修改企业关注状态
|
|
|
changeFollowStateRequest: function () {
|
|
|
var _this = this
|