fix: 减一页面同步刷新

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

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

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

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

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

Loading…
Cancel
Save