From 3876860f19d3f5693fd35b956e2a375ba1a0ada1 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期四, 14 八月 2025 16:23:34 +0800 Subject: [PATCH] 1.巡检成功提示优化 2.巡检检验状态bug优化 3.产品绑定“不合格数”bug优化 4.到货单送货条码标记 --- H5/Js/Scbl.js | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/H5/Js/Scbl.js b/H5/Js/Scbl.js index cbfdb80..b4d5fa7 100644 --- a/H5/Js/Scbl.js +++ b/H5/Js/Scbl.js @@ -109,7 +109,11 @@ }); }, getBarcode() { - + // 娣诲姞闃叉姈鍒ゆ柇 + if (this.isLoading) { + return; + } + //this.barcode = value; var that = this; @@ -235,12 +239,16 @@ var json = res; if (json.status == 0) { that.ItemBlDetail = json.data.pendingList; - that.$notify({ type: 'success', message: '鎵弿鎴愬姛' }); - that.$refs.barcode.focus(); that.barcode = ""; that.num = ""; that.splitNum = ""; + that.$notify({ type: 'success', message: json.message }); + that.$playSound('success'); that.GetMesItemBlDetailByBillNo(); + //that.sendMessage(json.data.tbBillList); + that.sendPrintMessage(json.data.tbBillList); + + that.$refs.barcode.focus(); } else { that.$toast.fail(json.message); -- Gitblit v1.9.3