|
@@ -130,14 +130,14 @@
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="11">
|
|
|
- <el-form-item label="公司类型" prop="company_type">
|
|
|
+ <el-form-item label="公司类型" prop="type">
|
|
|
<search-company-type
|
|
|
- :value="ruleForm.company_type"
|
|
|
+ :value="ruleForm.type"
|
|
|
:disabled="false"
|
|
|
:size="'mini'"
|
|
|
:isDetail="false"
|
|
|
:placeholder="'公司类型'"
|
|
|
- @searchChange="company_type_search_change"
|
|
|
+ @searchChange="type_search_change"
|
|
|
/> </el-form-item
|
|
|
></el-col>
|
|
|
|
|
@@ -331,7 +331,7 @@ export default {
|
|
|
ruleForm: {
|
|
|
id: "",
|
|
|
company: "", //公司名称
|
|
|
- company_type: "", // 公司类型
|
|
|
+ type: "", // 公司类型
|
|
|
inv_code: "", // 纳税识别号
|
|
|
inv_legaler: "", // 法人
|
|
|
inv_time: "", //注册日期
|
|
@@ -349,7 +349,7 @@ export default {
|
|
|
company: [
|
|
|
{ required: true, message: "企业名称不能为空!", trigger: "blur" },
|
|
|
],
|
|
|
- company_type: [
|
|
|
+ type: [
|
|
|
{
|
|
|
required: true,
|
|
|
message: "公司类型不能为空!",
|
|
@@ -463,15 +463,15 @@ export default {
|
|
|
}
|
|
|
this.loading = false;
|
|
|
},
|
|
|
- company_type_search_change(e) {
|
|
|
+ type_search_change(e) {
|
|
|
console.log(e);
|
|
|
const { id, code, label } = e;
|
|
|
if (id) {
|
|
|
- this.ruleForm.company_type = id;
|
|
|
+ this.ruleForm.type = id;
|
|
|
} else {
|
|
|
- this.ruleForm.company_type = "";
|
|
|
+ this.ruleForm.type = "";
|
|
|
}
|
|
|
- this.$refs.ruleForm.validateField("company_type");
|
|
|
+ this.$refs.ruleForm.validateField("type");
|
|
|
},
|
|
|
|
|
|
async initData() {
|
|
@@ -480,7 +480,7 @@ export default {
|
|
|
const {
|
|
|
id,
|
|
|
company, //公司名称
|
|
|
- company_type, // 公司类型
|
|
|
+ type, // 公司类型
|
|
|
inv_code, // 纳税识别号
|
|
|
inv_legaler, // 法人
|
|
|
inv_time, //注册日期
|
|
@@ -497,7 +497,7 @@ export default {
|
|
|
this.ruleForm = {
|
|
|
id: id || "",
|
|
|
company: company || "", //公司名称
|
|
|
- company_type: company_type || "", // 公司类型
|
|
|
+ type: type || "", // 公司类型
|
|
|
inv_code: inv_code || "", // 纳税识别号
|
|
|
inv_legaler: inv_legaler || "", // 法人
|
|
|
inv_time: inv_time || "", //注册日期
|
|
@@ -526,7 +526,7 @@ export default {
|
|
|
this.ruleForm = {
|
|
|
id: "",
|
|
|
company: "北京万宇恒通国际科贸有限公司", //公司名称
|
|
|
- company_type: "1", // 公司类型
|
|
|
+ type: "1", // 公司类型
|
|
|
inv_code: "91110113MA004JNJ28", // 纳税识别号
|
|
|
inv_legaler: "某某某", // 法人
|
|
|
inv_time: "2021-02-14", //注册日期
|