浏览代码

巡点检工单 检查种列表显示

yijing 1 年之前
父节点
当前提交
7e458bef26
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      pages/tour_tally/check/index.vue

+ 7 - 1
pages/tour_tally/check/index.vue

@@ -92,7 +92,13 @@
 				})
 			},
 			doSearch() {
-				this.filterList = this.equipList.filter(item => item.categoryCode.indexOf(this.keyWords) !== -1)
+				if (!this.keyWords) {
+					this.filterList = this.equipList;
+				} else {
+					this.filterList = this.equipList.filter(item =>
+						item.categoryCode.includes(this.keyWords)
+					);
+				}
 			},
 			handleSave() {
 				let isAllPass = true