修改供应商bug

ywj_dev
郑明梁 2 years ago
parent c389690d55
commit a212ac1285

@ -48,7 +48,7 @@
</el-button-group> </el-button-group>
</div> </div>
<el-divider style="margin: 15px"></el-divider> <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="序号" type="index"></el-table-column>
<el-table-column label="最小销售产品标识" prop="nameCode" width="140"></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> <el-table-column label="产品编码" prop="thirdId" show-overflow-tooltip></el-table-column>

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

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

Loading…
Cancel
Save