|
@@ -101,4 +101,20 @@ export class Tab3Page {
|
|
|
console.error('复制失败', err);
|
|
|
});
|
|
|
}
|
|
|
+
|
|
|
+ //搜索功能
|
|
|
+ searchTerm: string = '';
|
|
|
+
|
|
|
+async searchProducts(event: any) {
|
|
|
+ this.searchTerm = event.detail.value.toLowerCase();
|
|
|
+ if (this.searchTerm) {
|
|
|
+ this.products = this.allProducts.filter(product =>
|
|
|
+ product.get('name').toLowerCase().includes(this.searchTerm) ||
|
|
|
+ product.get('function').toLowerCase().includes(this.searchTerm) ||
|
|
|
+ product.get('composition').toLowerCase().includes(this.searchTerm)
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ this.products = [...this.allProducts];
|
|
|
+ }
|
|
|
+}
|
|
|
}
|