修改供应商bug

ywj_dev
郑明梁 2 years ago
parent c389690d55
commit a212ac1285

@ -48,7 +48,7 @@
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" row-click="handleSelectionChange" border highlight-current-row>
<el-table v-loading="loading" :data="list" style="width: 100%" @current-change="handleSelectionChange" border highlight-current-row>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="最小销售产品标识" prop="nameCode" width="140"></el-table-column>
<el-table-column label="产品编码" prop="thirdId" show-overflow-tooltip></el-table-column>

@ -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)) {

@ -575,7 +575,6 @@ export default {
getCompanyCertList() {
this.certLoading = true;
this.certQuery.customerId = this.inputQuery.customerId;
debugger
filterCompanyCert(this.certQuery)
.then((response) => {

Loading…
Cancel
Save