Sfoglia il codice sorgente

✨ feat(profile): 更新小程序版本号至 v0.0.11

- 将个人资料页面的版本号从 v0.0.10 更新为 v0.0.11

♻️ refactor(search): 更新热门搜索词列表以匹配业务领域

- 将热门搜索词从通用电子产品更换为美发相关产品
- 更新后的关键词包括:洗发水、发膜、染膏、吹风机、干胶、精油
- 注释掉原有的电子产品关键词列表
yourname 2 mesi fa
parent
commit
6de0197582
2 ha cambiato i file con 15 aggiunte e 9 eliminazioni
  1. 1 1
      mini/src/pages/profile/index.tsx
  2. 14 8
      mini/src/pages/search/index.tsx

+ 1 - 1
mini/src/pages/profile/index.tsx

@@ -364,7 +364,7 @@ const ProfilePage: React.FC = () => {
         {/* 版本信息 */}
         <View className="pb-8">
           <Text className="text-center text-xs text-gray-400">
-            v0.0.10 - 小程序版
+            v0.0.11 - 小程序版
           </Text>
         </View>
       </ScrollView>

+ 14 - 8
mini/src/pages/search/index.tsx

@@ -54,14 +54,20 @@ const SearchPage: React.FC = () => {
   // 获取热门搜索词(模拟数据)
   const getPopularSearchWords = (): string[] => {
     return [
-      '手机',
-      '笔记本电脑',
-      '耳机',
-      '智能手表',
-      '平板电脑',
-      '数码相机',
-      '游戏机',
-      '智能家居'
+      '洗发水',
+      '发膜',
+      '染膏',
+      '吹风机',
+      '干胶',
+      '精油'
+      // '手机',
+      // '笔记本电脑',
+      // '耳机',
+      // '智能手表',
+      // '平板电脑',
+      // '数码相机',
+      // '游戏机',
+      // '智能家居'
     ]
   }