|
|
|
@ -259,7 +259,7 @@ export default {
|
|
|
|
|
type: Function,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
inputQuery: {
|
|
|
|
|
inputEdit: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
@ -279,6 +279,13 @@ export default {
|
|
|
|
|
imgViewerVisible: false,
|
|
|
|
|
imgList: [],
|
|
|
|
|
options: regionDataPlus,
|
|
|
|
|
inputQuery:{
|
|
|
|
|
customerId: null,
|
|
|
|
|
companyName: null,
|
|
|
|
|
contacts: null,
|
|
|
|
|
mobile: null,
|
|
|
|
|
detailAddr: null,
|
|
|
|
|
},
|
|
|
|
|
rules: {
|
|
|
|
|
companyName: [
|
|
|
|
|
{
|
|
|
|
@ -417,6 +424,7 @@ export default {
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
ADMIN_TOKEN: store.getters.token,
|
|
|
|
|
};
|
|
|
|
|
this.inputQuery=this.inputEdit
|
|
|
|
|
if (this.inputQuery.areaCode != null)
|
|
|
|
|
this.selectedOptions = this.inputQuery.areaCode.split(",");
|
|
|
|
|
}
|
|
|
|
@ -512,12 +520,13 @@ export default {
|
|
|
|
|
,
|
|
|
|
|
getCompanyId(){
|
|
|
|
|
var row=this.maintainsList.find(item => item.id == this.inputQuery.companyName);
|
|
|
|
|
this.inputQuery.customerId= row.erpId
|
|
|
|
|
this.inputQuery.companyName= row.name
|
|
|
|
|
this.inputQuery.contacts=row.contact
|
|
|
|
|
this.inputQuery.mobile=row.mobile
|
|
|
|
|
this.inputQuery.detailAddr=row.addr
|
|
|
|
|
this.$set(this.inputQuery,"mobile",row.mobile);
|
|
|
|
|
this.$set(this.inputQuery,"customerId",row.erpId);
|
|
|
|
|
this.$set(this.inputQuery,"companyName",row.name);
|
|
|
|
|
this.$set(this.inputQuery,"contacts",row.contact);
|
|
|
|
|
this.$set(this.inputQuery,"detailAddr",row.addr);
|
|
|
|
|
this.customerId=this.inputQuery.customerId;
|
|
|
|
|
console.log(this.inputQuery)
|
|
|
|
|
this.getCompanyCertList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|