|
|
@@ -270,7 +270,7 @@ |
|
|
|
</div> |
|
|
|
<div class="yiyun_col-6"> |
|
|
|
<div class="el-form-itemBox"> |
|
|
|
<el-form-item label="地址:" :required="boolEdit"> |
|
|
|
<el-form-item label="地址:"> |
|
|
|
<div v-if="boolEdit == false">{{currentCompany.address}}</div> |
|
|
|
<div v-if="boolEdit == true" class="boolEdit_Input"> |
|
|
|
<el-input v-model="currentCompany.address"></el-input> |
|
|
@@ -310,7 +310,7 @@ |
|
|
|
<el-form-item label="法人:" :required="boolEdit"> |
|
|
|
<div v-if="boolEdit == false">{{currentCompany.cnName}}</div> |
|
|
|
<div v-if="boolEdit == true" class="boolEdit_Input"> |
|
|
|
<el-input v-model="currentCompany.cnName" :disabled="!!currentCompany.companyID"></el-input> |
|
|
|
<el-input v-model="currentCompany.cnName"></el-input> |
|
|
|
</div> |
|
|
|
</el-form-item> |
|
|
|
</div> |
|
|
@@ -1237,18 +1237,6 @@ export default { |
|
|
|
}); |
|
|
|
return false; |
|
|
|
} |
|
|
|
if ( |
|
|
|
this.currentCompany.address == null || |
|
|
|
this.currentCompany.address == "" |
|
|
|
) { |
|
|
|
this.$notify({ |
|
|
|
message: "请输入企业地址", |
|
|
|
type: "warning", |
|
|
|
offset: 100, |
|
|
|
duration: 2500, |
|
|
|
}); |
|
|
|
return false; |
|
|
|
} |
|
|
|
if ( |
|
|
|
this.currentCompany.telphone == null || |
|
|
|
this.currentCompany.telphone == "" |
|
|
|