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
}
}
}