|
@@ -239,7 +239,6 @@ export default {
|
|
|
this.loading = true;
|
|
|
this.tableData = [];
|
|
|
this.old_tableData = [];
|
|
|
-
|
|
|
await this.resetForm();
|
|
|
if (this.isDetail === "003") {
|
|
|
this.title = "添加企业/组织";
|
|
@@ -253,6 +252,7 @@ export default {
|
|
|
this.rulesThis = {};
|
|
|
await this.initData();
|
|
|
}
|
|
|
+ console.log(this.ruleForm);
|
|
|
this.setOrganName();
|
|
|
this.loading = false;
|
|
|
},
|
|
@@ -293,19 +293,20 @@ export default {
|
|
|
},
|
|
|
async initData() {
|
|
|
let res = {};
|
|
|
- console.log(this.kh);
|
|
|
if (this.kh + "" === "0") {
|
|
|
res = await asyncRequest.zdetail({ id: this.id });
|
|
|
} else {
|
|
|
res = await asyncRequest.qdetail({ id: this.id });
|
|
|
}
|
|
|
- if (res.code === 0) {
|
|
|
- const { pid, name, pname, companyName, parent, member } = res.data;
|
|
|
+ const { code, data, message } = res;
|
|
|
+ if (code === 0) {
|
|
|
+ const { pid, name, pname, companyName, parent, member } = data;
|
|
|
+ console.log(data);
|
|
|
this.organName = pname;
|
|
|
this.ruleForm = {
|
|
|
id: this.id,
|
|
|
region: this.kh + "" || "0",
|
|
|
- pid: parent || pid || "",
|
|
|
+ pid: parent ? parent : pid ? pid : "0",
|
|
|
name: name || "",
|
|
|
companyName: companyName || "",
|
|
|
};
|
|
@@ -316,14 +317,15 @@ export default {
|
|
|
this.old_tableData = [];
|
|
|
this.tableData = [];
|
|
|
}
|
|
|
- } else if (res.code >= 100 && res.code <= 104) {
|
|
|
+ this.$refs.ruleForm.resetFields();
|
|
|
+ this.$refs.ruleForm.clearValidate();
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ this.$message.warning(message);
|
|
|
}
|
|
|
},
|
|
|
contactRefresh(e) {
|
|
|
- console.log(e);
|
|
|
this.editModel = false;
|
|
|
const { index } = e;
|
|
|
if (index + "" === "-1") {
|
|
@@ -341,7 +343,7 @@ export default {
|
|
|
if (this.ruleForm.region === "0") {
|
|
|
let zitem = {
|
|
|
id: id,
|
|
|
- pid: pid === "0" ? "" : pid,
|
|
|
+ pid: pid,
|
|
|
name: name,
|
|
|
};
|
|
|
if (this.isDetail === "003") {
|
|
@@ -359,7 +361,7 @@ export default {
|
|
|
let qitem = {
|
|
|
id: id,
|
|
|
companyName: this.organName + companyName,
|
|
|
- parent: pid === "0" ? "" : pid,
|
|
|
+ parent: pid,
|
|
|
customer_member: this.getCustomer(),
|
|
|
};
|
|
|
|