|
|
|
@ -635,29 +635,28 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
closeSelDialog(val) {
|
|
|
|
|
if (val != null) {
|
|
|
|
|
let query = {
|
|
|
|
|
productId: this.inputQuery.productId,
|
|
|
|
|
relIdFk: val,
|
|
|
|
|
manufacturerId: this.inputQuery.manufacturerIdFk,
|
|
|
|
|
customerId: this.inputQuery.customerId,
|
|
|
|
|
auditStatus: this.inputQuery.auditStatus
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
localStorage.setItem('key',this.inputQuery.companyName)
|
|
|
|
|
bindProduct(query).then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
let cname= localStorage.getItem('key')
|
|
|
|
|
this.inputQuery.companyName=cname;
|
|
|
|
|
this.selectSingleProductVisible = false;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
closeSelDialog(val) {
|
|
|
|
|
if (val != null) {
|
|
|
|
|
let query = {
|
|
|
|
|
productId: this.inputQuery.productId,
|
|
|
|
|
relIdFk: val,
|
|
|
|
|
manufacturerId: this.inputQuery.manufacturerIdFk,
|
|
|
|
|
customerId: this.inputQuery.customerId,
|
|
|
|
|
companyName:this.inputQuery.companyName,
|
|
|
|
|
auditStatus: this.inputQuery.auditStatus
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
bindProduct(query).then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.inputQuery = response.data;
|
|
|
|
|
this.selectSingleProductVisible = false;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
addCert(row) {
|
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
|