Parcourir la source

完成了搜索功能

一个番茄酱 il y a 2 ans
Parent
commit
1c3189ff06
5 fichiers modifiés avec 288 ajouts et 2 suppressions
  1. 67 0
      components/my-search/my-search.vue
  2. 10 1
      pages.json
  3. 11 1
      pages/cate/cate.vue
  4. 18 0
      pages/home/home.vue
  5. 182 0
      subpkg/search/search.vue

+ 67 - 0
components/my-search/my-search.vue

@@ -0,0 +1,67 @@
+<template>
+	<view>
+		<view class="my-search-container" :style="{'background-color': bgcolor}" @click="searchBoxHandler">
+			<!-- 使用 view 组件模拟 input 输入框的样式 -->
+			<view class="my-search-box" :style="{'border-radius': radius + 'px'}">
+				<uni-icons type="search" size="17"></uni-icons>
+				<text class="placeholder">搜索</text>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		name:"my-search",
+		data() {
+			return {
+				
+			};
+		},
+		props: {
+			// 背景颜色
+			bgcolor: {
+				type: String,
+				default: '#C00000'
+			},
+			// 圆角尺寸
+			radius: {
+				type: Number,
+				// 单位是 px
+				default: 18
+			}
+		},
+		methods: {
+			// 点击了模拟的 input 输入框
+			searchBoxHandler() {
+				// 触发外界通过 @click 绑定的 click 事件处理函数
+				this.$emit('click')
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+.my-search-container {
+	// background-color: #c00000;
+	height: 50px;
+	padding: 0 10px;
+	display: flex;
+	align-items: center;
+}
+
+.my-search-box {
+	height: 36px;
+	background-color: #ffffff;
+	// border-radius: 15px;
+	width: 100%;
+	display: flex;
+	align-items: center;
+	justify-content: center;
+	
+	.placeholder {
+		font-size: 15px;
+		margin-left: 5px;
+	}
+}
+</style>

+ 10 - 1
pages.json

@@ -56,7 +56,16 @@
 				    }
 				    }
 				    
 				    
 				}
 				}
-			]
+			    ,{
+                    "path" : "search/search",
+                    "style" :                                                                                    
+                {
+                    "navigationBarTitleText": "",
+                    "enablePullDownRefresh": false
+                }
+                
+                }
+            ]
 		}
 		}
 	],
 	],
 	"globalStyle": {
 	"globalStyle": {

+ 11 - 1
pages/cate/cate.vue

@@ -1,5 +1,7 @@
 <template>
 <template>
 	<view>
 	<view>
+		<my-search @click="gotoSearch"></my-search>
+		
 		<view class="scroll-view-container">
 		<view class="scroll-view-container">
 			<!-- 左侧的滚动视图区域 -->
 			<!-- 左侧的滚动视图区域 -->
 			<scroll-view class="left-scroll-view" scroll-y :style="{height: wh + 'px'}">
 			<scroll-view class="left-scroll-view" scroll-y :style="{height: wh + 'px'}">
@@ -49,7 +51,9 @@
 			// 获取当前系统的信息
 			// 获取当前系统的信息
 			const sysInfo = uni.getSystemInfoSync()
 			const sysInfo = uni.getSystemInfoSync()
 			// 为 wh 窗口可用高度动态赋值
 			// 为 wh 窗口可用高度动态赋值
-			this.wh = sysInfo.windowHeight,
+			// 可用高度 = 屏幕高度 - navigationBar高度 - tabBar高度 - 自定义的search组件高
+			度
+			this.wh = sysInfo.windowHeight - 50
 			// 调用获取分类列表数据的方法
 			// 调用获取分类列表数据的方法
 			this.getCateList()
 			this.getCateList()
 		},
 		},
@@ -77,6 +81,12 @@
 				uni.navigateTo({
 				uni.navigateTo({
 					url: '/subpkg/goods_list/goods_list?cid=' + item3.cat_id
 					url: '/subpkg/goods_list/goods_list?cid=' + item3.cat_id
 				})
 				})
+			},
+			// 跳转到分包中的搜索页面
+			gotoSearch() {
+				uni.navigateTo({
+					url: '/subpkg/search/search'
+				})
 			}
 			}
 		}
 		}
 	}
 	}

+ 18 - 0
pages/home/home.vue

@@ -1,5 +1,9 @@
 <template>
 <template>
 	<view>
 	<view>
+		<!-- 使用自定义的搜索组件 -->
+		<view class="search-box">
+			<my-search @click="gotoSearch"></my-search>
+		</view>
 		<!-- 轮播图区域 -->
 		<!-- 轮播图区域 -->
 		<swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000" :circular="true">
 		<swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000" :circular="true">
 			<!-- 循环渲染轮播图的 item 项 -->
 			<!-- 循环渲染轮播图的 item 项 -->
@@ -96,6 +100,11 @@
 					})
 					})
 				})
 				})
 				this.floorList = res.message
 				this.floorList = res.message
+			},
+			gotoSearch() {
+				uni.navigateTo({
+					url: '/subpkg/search/search'
+				})
 			}
 			}
 		},
 		},
 	}
 	}
@@ -138,4 +147,13 @@ swiper {
 	display: flex;
 	display: flex;
 	padding-left: 10rpx;
 	padding-left: 10rpx;
 }
 }
+
+.search-box {
+	// 设置定位效果为“吸顶”
+	position: sticky;
+	// 吸顶的“位置”
+	top: 0;
+	// 提高层级,防止被轮播图覆盖
+	z-index: 999;
+}
 </style>
 </style>

+ 182 - 0
subpkg/search/search.vue

@@ -0,0 +1,182 @@
+<template>
+	<view>
+		<view class="search-box">
+			<!-- 使用 uni-ui 提供的搜索组件 -->
+			<uni-search-bar @input="input" :radius="100" cancelButton="none" :focus="true"></uni-search-bar>
+		</view>
+		
+		<!-- 搜索建议列表 -->
+		<view class="sugg-list" v-if="searchResults.length !== 0">
+			<view class="sugg-item" v-for="(item, i) in searchResults" :key="i" @click="gotoDetail(item.goods_id)">
+				<view class="goods-name">{{item.goods_name}}</view>
+				<uni-icons type="arrowright" size="16"></uni-icons>
+			</view>
+		</view>
+		
+		<!-- 搜索历史 -->
+		<view class="history-box" v-else>
+			<!-- 标题区域 -->
+			<view class="history-title">
+				<text>搜索历史</text>
+				<uni-icons type="trash" size="17" @click="cleanHistory"></uni-icons>
+			</view>
+			<!-- 列表区域 -->
+			<view class="history-list">
+				<uni-tag :text="item" v-for="(item, i) in historys" :key="i" @click="gotoGoodsList(item)">
+				</uni-tag>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		computed: {
+			historys() {
+				// 注意:由于数组是引用类型,所以不要直接基于原数组调用 reverse 方法,以免修改原数
+				组中元素的顺序
+				// 而是应该新建一个内存无关的数组,再进行 reverse 反转
+				return [...this.historyList].reverse()
+			}
+		},
+		onLoad() {
+			this.historyList = JSON.parse(uni.getStorageSync('kw') || '[]')
+		},
+		data() {
+			return {
+				// 延时器的 timerId
+				timer: null,
+				// 搜索关键词
+				kw: '',
+				// 搜索结果列表
+				searchResults: [],
+				// 搜索关键词的历史记录
+				historyList: ['a', 'app', 'apple']
+			};
+		},
+		methods: {
+			input(e) {
+				// e.value 是最新的搜索内容
+				// console.log(e.value)
+				
+				// 清除 timer 对应的延时器
+				clearTimeout(this.timer)
+				// 重新启动一个延时器,并把 timerId 赋值给 this.timer
+				this.timer = setTimeout(() => {
+					// 如果 500 毫秒内,没有触发新的输入事件,则为搜索关键词赋值
+					this.kw = e.value
+					console.log(this.kw)
+					// 根据关键词,查询搜索建议列表
+					this.getSearchList()
+				}, 500)
+			},
+			// 根据搜索关键词,搜索商品建议列表
+			async getSearchList() {
+				// 判断关键词是否为空
+				if (this.kw === '') {
+					this.searchResults = []
+					return
+				}
+				// 发起请求,获取搜索建议列表
+				const { data: res } = await uni.$http.get('/api/public/v1/goods/qsearch', { query: this.kw })
+				if (res.meta.status !== 200) return uni.$showMsg()
+				this.searchResults = res.message
+				
+				// 1. 查询到搜索建议之后,调用 saveSearchHistory() 方法保存搜索关键词
+				this.saveSearchHistory()
+			},
+			// 2. 保存搜索关键词的方法
+			saveSearchHistory() {
+				// 2.1 直接把搜索关键词 push 到 historyList 数组中
+				// this.historyList.push(this.kw)
+				
+				// 1. 将 Array 数组转化为 Set 对象
+				const set = new Set(this.historyList)
+				// 2. 调用 Set 对象的 delete 方法,移除对应的元素
+				set.delete(this.kw)
+				// 3. 调用 Set 对象的 add 方法,向 Set 中添加元素
+				set.add(this.kw)
+				// 4. 将 Set 对象转化为 Array 数组
+				this.historyList = Array.from(set)
+				// 调用 uni.setStorageSync(key, value) 将搜索历史记录持久化存储到本地
+				uni.setStorageSync('kw', JSON.stringify(this.historyList))
+			},
+			gotoDetail(goods_id) {
+				uni.navigateTo({
+					// 指定详情页面的 URL 地址,并传递 goods_id 参数
+					url: '/subpkg/goods_detail/goods_detail?goods_id=' + goods_id
+				})
+			},
+			// 清空搜索历史记录
+			cleanHistory() {
+				// 清空 data 中保存的搜索历史
+				this.historyList = []
+				// 清空本地存储中记录的搜索历史
+				uni.setStorageSync('kw', '[]')
+			},
+			// 点击跳转到商品列表页面
+			gotoGoodsList(kw) {
+				uni.navigateTo({
+					url: '/subpkg/goods_list/goods_list?query=' + kw
+				})
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+.uni-searchbar {
+	/* 将默认的 #FFFFFF 改为 #C00000 */
+	background-color: #c00000;
+}
+.search-box {
+	position: sticky;
+	top: 0;
+	z-index: 999;
+}
+.sugg-list {
+	padding: 0 5px;
+	
+	.sugg-item {
+		font-size: 12px;
+		padding: 13px 0;
+		border-bottom: 1px solid #efefef;
+		display: flex;
+		align-items: center;
+		justify-content: space-between;
+		
+		.goods-name {
+			// 文字不允许换行(单行文本)
+			white-space: nowrap;
+			// 溢出部分隐藏
+			overflow: hidden;
+			// 文本溢出后,使用 ... 代替
+			text-overflow: ellipsis;
+			margin-right: 3px;
+		}
+	}
+}
+
+.history-box {
+	padding: 0 5px;
+	
+	.history-title {
+		display: flex;
+		justify-content: space-between;
+		align-items: center;
+		height: 40px;
+		font-size: 13px;
+		border-bottom: 1px solid #efefef;
+	}
+	
+	.history-list {
+		display: flex;
+		flex-wrap: wrap;
+		
+		.uni-tag {
+			margin-top: 5px;
+			margin-right: 5px;
+		}
+	}
+}
+</style>