From ad3728fffe6c27972291229c094dbf3af78d6ad8 Mon Sep 17 00:00:00 2001 From: "Mr.sun" <2290907227@qq.com> Date: Tue, 16 Apr 2024 14:35:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=B8=85=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/inventory/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pages/inventory/index.vue b/pages/inventory/index.vue index 242fbd2..565a043 100644 --- a/pages/inventory/index.vue +++ b/pages/inventory/index.vue @@ -311,11 +311,14 @@ } this.$u.api.invPlan.pdaEntrySave(this.form).then(res=>{ if(res.code==200){ - this.$u.toast("修改完成"); + if(res.msg){ + this.$u.toast(res.msg); + } setTimeout(()=>{ this.$u.api.invPlan.pdaInvByContainerCode({containerCode:this.form.containerCode}).then(res=>{ if(!res.rows || res.rows.length == 0){ - this.$u.toast("当前托盘内商品不存在"); + this.$u.toast("当前托盘内商品不存在"); + this.dataList=[] }else if(res.code == '200'){ if(res.msg){ this.$u.toast(res.msg);