|
@@ -269,9 +269,16 @@
|
|
|
this.deptList.licenseAddress = res
|
|
|
},
|
|
|
singleClick(item) {
|
|
|
- if (this.mainBusinessType.indexOf(item) == -1) {
|
|
|
+ if (this.mainBusinessType.indexOf(item.name) == -1) {
|
|
|
this.mainBusinessType.push(item.name)
|
|
|
item.checked = true
|
|
|
+ }else{
|
|
|
+ for (var i = 0; i < this.mainBusinessType.length; i++) {
|
|
|
+ if(this.mainBusinessType[i]==item.name){
|
|
|
+ this.mainBusinessType.splice(i,1)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ item.checked = false
|
|
|
}
|
|
|
},
|
|
|
filterFileType(index, lists) {
|
|
@@ -574,10 +581,10 @@
|
|
|
}
|
|
|
.companyProfilewrap{
|
|
|
position:relative;
|
|
|
- width:100%;
|
|
|
+ width:90%;
|
|
|
}
|
|
|
.companyProfile{
|
|
|
- width:90%;height:138px;
|
|
|
+ width:100%;height:138px;
|
|
|
background:#F9F9FA;
|
|
|
font-size:13px;
|
|
|
padding:13px;
|
|
@@ -586,7 +593,7 @@
|
|
|
.companyProfilecontent{
|
|
|
position:absolute;
|
|
|
bottom:10px;
|
|
|
- right:15px;
|
|
|
+ right:0px;
|
|
|
font-size:13px;
|
|
|
}
|
|
|
</style>
|