|
@@ -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({
|