|
|
|
@ -355,6 +355,7 @@
|
|
|
|
|
checkType: "",
|
|
|
|
|
roles: "",
|
|
|
|
|
companyName: ""
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
rowDataRules: {
|
|
|
|
|
nickName: [
|
|
|
|
@ -411,9 +412,8 @@
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
selectOne(event) {
|
|
|
|
|
|
|
|
|
|
this.checkQuery.companyName = event.name;
|
|
|
|
|
this.checkQuery.companyId = event.id;
|
|
|
|
|
this.checkQuery.companyName =this.sOptions.find(item => item.id == event).name
|
|
|
|
|
this.checkQuery.companyId = this.sOptions.find(item => item.id == event).erpId;
|
|
|
|
|
this.sSelectStatus = true;
|
|
|
|
|
},
|
|
|
|
|
remoteMethod(query) {
|
|
|
|
@ -509,7 +509,7 @@
|
|
|
|
|
if (this.$isBlank(this.rowData.companyName)) {
|
|
|
|
|
return this.$message.warning("请输入企业名称");
|
|
|
|
|
}
|
|
|
|
|
this.checkQuery.companyName = this.rowData.companyName;
|
|
|
|
|
|
|
|
|
|
this.checkRegister();
|
|
|
|
|
this.centerDialogVisible = false;
|
|
|
|
|
},
|
|
|
|
|