Commit e8a00019 authored by huangjie's avatar huangjie

*

parent a077ec79
...@@ -363,9 +363,12 @@ export default { ...@@ -363,9 +363,12 @@ export default {
//跳转到客户详情 //跳转到客户详情
toDetail(row,type){ toDetail(row,type){
let customerId = row.customerId let customerId = row.customerId
let companyId = row.companyId == null?'':encodeStr(companyId) let companyId = row.companyId
let path = type let path = type
this.$router.push({path:'/enterprise/'+companyId,query:{customerId:customerId,path:path}}) if(companyId == null){
path = 'business'
}
this.$router.push({path:'/enterprise/'+encodeStr(companyId),query:{customerId:customerId,path:path}})
}, },
clearname(value){ clearname(value){
if(value == ""){ if(value == ""){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment