Browse Source

图列表主动申请

jwyu 2 years ago
parent
commit
4d1dae0967
1 changed files with 18 additions and 0 deletions
  1. 18 0
      pages/chart/component/noAuth.vue

+ 18 - 0
pages/chart/component/noAuth.vue

@@ -40,6 +40,7 @@ export default {
             if(!this.info) return
             // 该客户为冻结、试用暂停状态;该客户为正式、试用、永续状态,但联系人图表权限未开启或禁用
             if(this.info.type==='contact'){
+                this.handleAutoApply()
                 return 1
             }
             if(this.info.type==='expired'){
@@ -62,6 +63,23 @@ export default {
             })
         },
 
+        handleAutoApply(){
+            if(!this.info.customer_info.has_apply){
+                if(this.info.customer_info.status=='冻结'||(this.info.customer_info.status=='试用'&&this.info.customer_info.is_suspend==1)){
+                    apiApplyPermission({
+                        company_name:this.info.customer_info.company_name,
+                        real_name:this.info.customer_info.name,
+                        source:3,
+                        from_page:'图库列表'
+                    }).then(res=>{
+                        if(res.code===200){
+                            console.log('主动申请成功');
+                        }
+                    }) 
+                }
+            }
+        },
+
         handleApply(){
             if(this.info.customer_info.status=='流失'){
                 apiApplyPermission({