fix: 减一页面同步刷新

20240912_adapter_z
chenhc 8 months ago
parent 62dbf72e15
commit 9aa7e01059

@ -418,9 +418,10 @@ export default {
},
methods: {
getBillNo(billNo){
getBillNo(billNo,workPlaceCode){
let post = {
billNo: billNo,
workPlaceCode: workPlaceCode,
page: 1,
limit: 10,
}
@ -455,7 +456,8 @@ export default {
this.findFromInvList("");
}
if (this.formData.billNo != null){
this.getBillNo(this.formData.billNo)
this.getBillNo(this.formData.billNo,this.formData.workplaceCode)
this.startDeal();
}else {
this.findCurOrder();
}

@ -418,9 +418,10 @@ export default {
},
methods: {
getBillNo(billNo){
getBillNo(billNo,workPlaceCode){
let post = {
billNo: billNo,
workPlaceCode: workPlaceCode,
page: 1,
limit: 10,
}
@ -455,7 +456,8 @@ export default {
this.findFromInvList("");
}
if (this.formData.billNo != null){
this.getBillNo(this.formData.billNo)
this.getBillNo(this.formData.billNo,this.formData.workplaceCode)
this.startDeal();
}else {
this.findCurOrder();
}

@ -212,8 +212,9 @@ export default {
codeRemove(post).then((response) => {
if (response.code === 20000) {
this.$message.success("操作成功!");
this.refreshPanel(this)
this.getList()
// this.refreshPanel(this)
this.getList(this);
this.closeScanDialog()
} else {
this.$message.error(response.message);
}

@ -292,6 +292,7 @@ export default {
closeScanDialog() {
this.getPrescribeDetail(this);
this.refreshPanel(this)
},
rowStyle({row, rowIndex}) {

Loading…
Cancel
Save