From 3fc0ae71602d3aaadd5cf6964cd94ab35d4960af Mon Sep 17 00:00:00 2001 From: ruanqi Date: Mon, 21 Aug 2023 18:19:28 +0800 Subject: [PATCH] =?UTF-8?q?0412=20=E6=96=B0=E7=9C=8B=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/production/generateReport.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/modules/production/generateReport.vue b/src/views/modules/production/generateReport.vue index 3dc178a..640b2fb 100644 --- a/src/views/modules/production/generateReport.vue +++ b/src/views/modules/production/generateReport.vue @@ -279,6 +279,9 @@ + + + 开始 @@ -622,6 +625,7 @@ moldQty:'', }, scanSeqNo:'', + previousSeqNo:'', stopModalFlag:false, continueModalFlag:false, qty1:'', @@ -983,6 +987,7 @@ openStart(){ this.scanSeqNo=''; this.tvId=''; + this.previousSeqNo=''; this.startModalFlag=true; this.$nextTick(() => { this.$refs.start.focus();}) }, @@ -1219,11 +1224,13 @@ let inData={ username:this.$store.state.user.name, seqNo:this.scanSeqNo, + previousSeqNo:this.previousSeqNo, tvId:this.tvId, } startSeqNo(inData).then(({data}) => { if (data && data.code === 0) { this.scanSeqNo=''; + this.previousSeqNo=''; this.startModalFlag=false; this.$message({ message: '操作成功', @@ -1234,6 +1241,7 @@ }) } else { this.scanSeqNo=''; + this.previousSeqNo=''; this.$alert(data.msg, '错误', { confirmButtonText: '确定' })