|
@@ -63,10 +63,10 @@
|
|
|
</div>
|
|
|
<div class="formFlex">
|
|
|
<el-form-item label="咨询联系人" prop="zxlxr" class="formWidth">
|
|
|
- <el-input v-model="form.zxlxr" placeholder="请输入咨询联系人"/>
|
|
|
+ <el-input v-model="form.zxlxr" :maxlength="50" show-word-limit placeholder="请输入咨询联系人"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="咨询联系电话" prop="zxlxdh" class="formWidth">
|
|
|
- <el-input v-model="form.zxlxdh" placeholder="请输入咨询联系电话"/>
|
|
|
+ <el-input v-model="form.zxlxdh" :maxlength="20" show-word-limit placeholder="请输入咨询联系电话"/>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
<div class="formFlex">
|
|
@@ -116,9 +116,6 @@
|
|
|
</h3>
|
|
|
<div class="formBox">
|
|
|
<div class="formFlex">
|
|
|
- <el-form-item label="法定代表人或负责人证件号码" prop="frzjhm" class="formWidth2">
|
|
|
- <el-input v-model="form.frzjhm" :disabled="isBa" placeholder="请输入法定代表人或负责人证件号码"/>
|
|
|
- </el-form-item>
|
|
|
<el-form-item label="法定代表人或负责人证件类型" prop="frzjlx" class="formWidth2">
|
|
|
<el-select v-model="form.frzjlx" :disabled="isBa" placeholder="请选择法定代表人或负责人证件类型"
|
|
|
@change="changeFrzjlx('frzjhm',form.frzjlx)">
|
|
@@ -130,6 +127,9 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="法定代表人或负责人证件号码" prop="frzjhm" class="formWidth2">
|
|
|
+ <el-input v-model="form.frzjhm" :disabled="isBa" placeholder="请输入法定代表人或负责人证件号码"/>
|
|
|
+ </el-form-item>
|
|
|
</div>
|
|
|
<div class="formFlex">
|
|
|
<el-form-item label="法定代表人或负责人姓名" prop="frxm" class="formWidth2">
|
|
@@ -1637,9 +1637,6 @@ export default {
|
|
|
this.form.nsyljg = this.form.nsyljg ? this.form.nsyljg.split(',') : []
|
|
|
this.form.yljgqyhz = this.form.yljgqyhz ? this.form.yljgqyhz.split(',') : []
|
|
|
this.form.fcyhznr = this.form.fcyhznr ? this.form.fcyhznr.split(',') : []
|
|
|
- // this.form.isGbmy = '0'
|
|
|
- // this.form.lat = this.form.lat ? this.form.lat : 43.891193
|
|
|
- // this.form.lng = this.form.lng ? this.form.lng : 125.353457
|
|
|
|
|
|
this.getSzlrlx(this.form.szlrlx)
|
|
|
this.changeIsXfsyZt(this.form.isXfsyZt)
|
|
@@ -1677,7 +1674,6 @@ export default {
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
- console.log('未验证')
|
|
|
this.$refs['form'].validate((valid,obj) => {
|
|
|
if (valid) {
|
|
|
console.log(this.form,'submitForm')
|
|
@@ -1708,19 +1704,6 @@ export default {
|
|
|
this.form2.fwsm=this.form.fwsm;
|
|
|
addJgjs(this.form2);
|
|
|
|
|
|
- // if(this.form2.zt!="0"){
|
|
|
- // delJgjs(this.form2.jgid).then(response =>{
|
|
|
- // this.form2.jgid=this.form.id;
|
|
|
- // addJgjs(this.form2);
|
|
|
- // this.form2.zt="1";
|
|
|
- // });
|
|
|
- // // updateJgjs(this.form2);
|
|
|
- // }else{
|
|
|
- // this.form2.jgid=this.form.id;
|
|
|
- // addJgjs(this.form2);
|
|
|
- // this.form2.zt="1";
|
|
|
- // }
|
|
|
-
|
|
|
if (this.form.id != null) {
|
|
|
let formData = this.comparisonObject({ ...this.form, ...pamar }, this.copyForm)
|
|
|
if (formData) {
|