e88ce89d by renchao@pashanhoo.com

信息备案

1 parent e1e3e9e4
...@@ -77,6 +77,7 @@ ...@@ -77,6 +77,7 @@
77 this.ruleForm = { 77 this.ruleForm = {
78 cllx: "", 78 cllx: "",
79 clmc: "", 79 clmc: "",
80 clbm: ""
80 } 81 }
81 }, 82 },
82 /** 83 /**
...@@ -90,6 +91,7 @@ ...@@ -90,6 +91,7 @@
90 this.ruleForm = { 91 this.ruleForm = {
91 cllx: "", 92 cllx: "",
92 clmc: "", 93 clmc: "",
94 clbm: ""
93 } 95 }
94 this.$emit("input", false); 96 this.$emit("input", false);
95 } else { 97 } else {
......
...@@ -247,7 +247,8 @@ ...@@ -247,7 +247,8 @@
247 let obj = { 247 let obj = {
248 bsmCompany: this.formData.bsmCompany, 248 bsmCompany: this.formData.bsmCompany,
249 clmc: data.clmc, 249 clmc: data.clmc,
250 cllx: data.cllx 250 cllx: data.cllx,
251 clbm: data.clbm
251 }; 252 };
252 addCompanyMaterial(obj).then(async (res) => { 253 addCompanyMaterial(obj).then(async (res) => {
253 if (res.code == 200) { 254 if (res.code == 200) {
......