From 5d5f540f097a4beb032c663fa657d1870e34ea6f Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Mon, 16 Jun 2025 14:05:52 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E7=AE=94=E5=B7=A5=E5=BA=8F=E5=88=A0?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/SearchBox.vue | 1 + pages/SecondPhase/production/SboProcess.vue | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/components/SearchBox.vue b/components/SearchBox.vue index 2a39660..5386e2e 100644 --- a/components/SearchBox.vue +++ b/components/SearchBox.vue @@ -42,6 +42,7 @@ }, toDel () { this.$emit('input', '') + this.$emit('handleDel', '') }, handleSend (e) { this.$emit('input', e.target.value) diff --git a/pages/SecondPhase/production/SboProcess.vue b/pages/SecondPhase/production/SboProcess.vue index 2ef6afe..5b778b8 100644 --- a/pages/SecondPhase/production/SboProcess.vue +++ b/pages/SecondPhase/production/SboProcess.vue @@ -22,7 +22,7 @@ {{$t('filter.mother-roll')}} - + @@ -202,7 +202,7 @@ this.disabled3 = false } }, - // 开始工单 + // 正常下卷/单下卷/单上轴/单下轴 async _rawScrollDowm (type) { this.disabled4 = true this.type = type @@ -235,6 +235,13 @@ toCheck (e) { this.pkId = this.pkId === e.container_name ? '' : e.container_name this.pkObj = this.pkId === e.container_name ? e : {} + }, + handleDel () { + this.pkId = '' + this.pkObj = {} + this.totalCount = 0 + this.dataList = [] + this.pageNum = 1 } } }