cr 4 роки тому
батько
коміт
6fa4aad32f

+ 17 - 1
src/components/layout/nav-bar2.vue

@@ -15,7 +15,7 @@
15 15
             }"
16 16
         >
17 17
             <div class="l ">
18
-                <div class="search" @click="jump('/pages/goods/search')">
18
+                <div class="search" @click="jumpSearch">
19 19
                     <i class="iconfont iconsearch search-icon"></i>
20 20
                     <input
21 21
                         type="text"
@@ -42,6 +42,12 @@ export default {
42 42
             default: "",
43 43
         },
44 44
 
45
+        // 标题
46
+        curTab: {
47
+            type: String,
48
+            default: '0',
49
+        },
50
+
45 51
         // themeBg
46 52
         themeBg: {
47 53
             type: Boolean,
@@ -82,6 +88,16 @@ export default {
82 88
                 isTabBer: true,
83 89
             });
84 90
         },
91
+
92
+        jumpSearch(){
93
+            console.log('curTab',this.curTab)
94
+            this.router.push({
95
+                path:'/pages/goods/search',
96
+                query:{
97
+                    curTab:this.curTab
98
+                }
99
+            })
100
+        }
85 101
     },
86 102
 
87 103
     // 数据计算

+ 1 - 1
src/pages/goods/index.vue

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <div id="pageTop">
4
-            <nav-bar2 :title="' '"></nav-bar2>
4
+            <nav-bar2 :title="''" :curTab="curTab"></nav-bar2>
5 5
             <section class="shop-info">
6 6
                 <div class="head-bg">
7 7
                     <my-image

+ 49 - 23
src/pages/goods/list2.vue

@@ -6,10 +6,10 @@
6 6
                 type="text"
7 7
                 :focus="true"
8 8
                 v-model="keyword"
9
-                @confirm="confirm"
9
+                @confirm="confirmSearch"
10 10
                 placeholder="搜索本店商品"
11 11
             />
12
-            <div class="search__cancel" @click="confirm">搜索</div>
12
+            <div class="search__cancel" @click="confirmSearch">搜索</div>
13 13
         </div>
14 14
 
15 15
         <div class="page-tab">
@@ -219,14 +219,16 @@ export default {
219 219
     // 数据
220 220
     data() {
221 221
         return {
222
-            title: "", // 标题(搜索关键字)
222
+            keyword: "", // 标题(搜索关键字)
223 223
             page: 1, // 页码
224 224
             activityList: [],
225
-            goodsList:[],
225
+            goodsList: [],
226 226
             isHaveMore: true, // 是否有更多数据
227 227
             loading: false, // 是否加载完成
228 228
             goods: null, // 详情数据 加入购物车时用
229 229
             curTab: "0",
230
+            sort: -1, // 排序
231
+            asc: 1,
230 232
         };
231 233
     },
232 234
 
@@ -246,9 +248,9 @@ export default {
246 248
 
247 249
         await self.fn.init();
248 250
         self.fn.shareMenu();
249
-        self.title = self.$mp.query.title;
250
-        self.fn.setTitle(self.title);
251
-        this.tabClick('0')
251
+        self.keyword = self.$mp.query.title;
252
+        self.fn.setTitle(self.keyword);
253
+        this.tabClick("0");
252 254
     },
253 255
 
254 256
     onShareAppMessage() {
@@ -270,38 +272,61 @@ export default {
270 272
 
271 273
     onPullDownRefresh() {
272 274
         const self = this;
273
-        if(self.curTab === '0'){
275
+        if (self.curTab === "0") {
274 276
             this.getGoodsList();
275
-        }else{
277
+        } else {
276 278
             self.getActivityList();
277 279
         }
278 280
     },
279 281
 
280 282
     // 函数
281 283
     methods: {
284
+        confirmSearch() {
285
+            this.fn.setTitle(this.keyword);
286
+            if (this.curTab === "0") {
287
+                this.getGoodsList();
288
+            } else {
289
+                this.getActivityList();
290
+            }
291
+        },
292
+
282 293
         tabClick(val) {
283 294
             this.curTab = val;
284
-            if(val==='0'){
295
+            if (val === "0") {
285 296
                 this.getGoodsList();
286
-            }else{
297
+            } else {
287 298
                 this.getActivityList();
288 299
             }
289 300
         },
290 301
 
291
-        getMore(){
302
+        getMore() {
292 303
             const self = this;
293
-            if(self.curTab === '0'){
294
-
295
-            }else{
304
+            if (self.curTab === "0") {
305
+            } else {
296 306
                 self.getMoreActivity();
297 307
             }
298 308
         },
309
+        // 设置排序
310
+        setSort(val) {
311
+            const self = this;
312
+
313
+            if (val === "Price") {
314
+                self.sort = 1;
315
+                self.asc = self.asc === 1 ? 0 : 1;
316
+            } else {
317
+                self.asc = 0;
318
+                self.sort = val;
319
+            }
320
+            this.$forceUpdate();
321
+
322
+            self.getGoodsList();
323
+        },
299 324
 
300 325
         // 获取活动列表
301 326
         getActivityList() {
302 327
             const self = this;
303 328
 
304
-            let keyword = self.title;
329
+            let keyword = self.keyword;
305 330
 
306 331
             self.page = 1;
307 332
             uni.showLoading({
@@ -336,7 +361,7 @@ export default {
336 361
 
337 362
             self.api
338 363
                 .get("/Product/GetActivityList", {
339
-                    keyword: self.title,
364
+                    keyword: self.keyword,
340 365
                     pageIndex: self.page,
341 366
                     pageSize: 20,
342 367
                 })
@@ -357,14 +382,15 @@ export default {
357 382
         getGoodsList() {
358 383
             const self = this;
359 384
 
360
-
361 385
             self.page = 1;
362 386
             uni.showLoading({
363 387
                 title: "加载中...",
364 388
             });
365 389
             self.api
366 390
                 .get("/Product/GetHHSGProductList", {
367
-                    keyword: self.title,
391
+                    asc: this.asc,
392
+                    sortBy: self.sort,
393
+                    keyword: self.keyword,
368 394
                     pageIndex: self.page,
369 395
                     pageSize: 20,
370 396
                 })
@@ -380,18 +406,19 @@ export default {
380 406
 
381 407
                     self.goodsList = data;
382 408
                     self.loading = true;
383
-                    this.setGoodsList();
384 409
                     uni.hideLoading();
385 410
                 });
386 411
         },
387 412
 
388 413
         // 获取更多商品
389 414
         getMoreGoods() {
390
-             const self = this;
415
+            const self = this;
391 416
 
392 417
             self.api
393 418
                 .get("/Product/GetHHSGProductList", {
394
-                    keyword: self.title,
419
+                    asc: this.asc,
420
+                    sortBy: self.sort,
421
+                    keyword: self.keyword,
395 422
                     pageIndex: self.page,
396 423
                     pageSize: 20,
397 424
                 })
@@ -404,7 +431,6 @@ export default {
404 431
                     }
405 432
 
406 433
                     self.goodsList = self.goodsList.concat(data);
407
-                    this.setGoodsList();
408 434
                 });
409 435
         },
410 436
 

+ 142 - 107
src/pages/goods/search.vue

@@ -1,160 +1,195 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <div class="search">
4
-            <input class="search__input" type="text" :focus="true" v-model="keyword" @confirm="confirm" placeholder="搜索本店商品">
4
+            <input
5
+                class="search__input"
6
+                type="text"
7
+                :focus="true"
8
+                v-model="keyword"
9
+                @confirm="confirm"
10
+                placeholder="搜索本店商品"
11
+            />
5 12
             <div class="search__cancel" @click="confirm">搜索</div>
6 13
         </div>
7 14
         <div class="keyword">
8 15
             <div class="keyword__title">大家都在搜</div>
9 16
             <ul class="list">
10
-                <li class="list__item" v-for="(item, index) in keywordList" :key="index" @click="jumpList(item.keywords)">{{ item.keywords }}</li>
17
+                <li
18
+                    class="list__item"
19
+                    v-for="(item, index) in keywordList"
20
+                    :key="index"
21
+                    @click="jumpList(item.keywords)"
22
+                >
23
+                    {{ item.keywords }}
24
+                </li>
11 25
             </ul>
12 26
         </div>
13 27
         <div class="keyword" v-if="searchHistory.length">
14 28
             <div class="keyword__title">历史搜索</div>
15 29
             <ul class="list">
16
-                <li class="list__item" v-for="(item, index) in searchHistory" :key="index" @click="jumpList(item)">{{ item }}</li>
30
+                <li
31
+                    class="list__item"
32
+                    v-for="(item, index) in searchHistory"
33
+                    :key="index"
34
+                    @click="jumpList(item)"
35
+                >
36
+                    {{ item }}
37
+                </li>
17 38
             </ul>
18 39
         </div>
19 40
     </div>
20 41
 </template>
21 42
 
22 43
 <script>
23
-    export default {
24
-        name: '',
25
-
26
-        // 数据
27
-        data() {
28
-            return {
29
-                keyword: '',
30
-                keywordList: [],
31
-            }
32
-        },
33
-
34
-        onShow() {
35
-            const self = this
44
+export default {
45
+    name: "",
46
+
47
+    // 数据
48
+    data() {
49
+        return {
50
+            keyword: "",
51
+            keywordList: [],
52
+            curTab: "0",
53
+        };
54
+    },
55
+    onLoad(opts) {
56
+        if (opts.curTab) {
57
+            this.curTab = opts.curTab;
58
+        }
59
+    },
36 60
 
37
-            // self.getlist()
38
-        },
61
+    onShow() {
62
+        const self = this;
39 63
 
40
-        // 函数
41
-        methods: {
42
-            // 获取热门搜索词
43
-            getlist() {
44
-                const self = this
64
+        // self.getlist()
65
+    },
45 66
 
46
-                self.api.get('/Product/GetKeywordsList').then(res => {
47
-                    self.keywordList = res.data
48
-                })
49
-            },
67
+    // 函数
68
+    methods: {
69
+        // 获取热门搜索词
70
+        getlist() {
71
+            const self = this;
50 72
 
51
-            // 搜索处理
52
-            confirm() {
53
-                const self = this
73
+            self.api.get("/Product/GetKeywordsList").then((res) => {
74
+                self.keywordList = res.data;
75
+            });
76
+        },
54 77
 
55
-                if (self.keyword) {
56
-                    let list = self.fn.deepClone(self.searchHistory) || []
78
+        // 搜索处理
79
+        confirm() {
80
+            const self = this;
57 81
 
58
-                    list.forEach((item, index) => {
59
-                        if (item === self.keyword) {
60
-                            list.splice(index, 1)
61
-                        }
62
-                    })
82
+            if (self.keyword) {
83
+                let list = self.fn.deepClone(self.searchHistory) || [];
63 84
 
64
-                    list.unshift(self.keyword)
65
-                    list.lenght = 10
85
+                list.forEach((item, index) => {
86
+                    if (item === self.keyword) {
87
+                        list.splice(index, 1);
88
+                    }
89
+                });
66 90
 
67
-                    self.$store.commit('common/update', {
68
-                        searchHistory: list,
69
-                    })
70
-                }
91
+                list.unshift(self.keyword);
92
+                list.lenght = 10;
71 93
 
72
-                self.jumpList(self.keyword)
73
-            },
94
+                self.$store.commit("common/update", {
95
+                    searchHistory: list,
96
+                });
97
+            }
74 98
 
75
-            // 跳转到商品列表
76
-            jumpList(keyword) {
77
-                const self = this
99
+            self.jumpList(self.keyword);
100
+        },
78 101
 
102
+        // 跳转到商品列表
103
+        jumpList(keyword) {
104
+            const self = this;
105
+            if (this.curTab == "0") {
79 106
                 self.router.push({
80
-                    path: '/pages/goods/list',
107
+                    path: "/pages/goods/list",
81 108
                     query: {
82 109
                         title: keyword,
83 110
                     },
84
-                })
85
-            },
111
+                });
112
+            } else {
113
+                self.router.push({
114
+                    path: "/pages/goods/list2",
115
+                    query: {
116
+                        title: keyword,
117
+                    },
118
+                });
119
+            }
86 120
         },
121
+    },
87 122
 
88
-        // 数据计算
89
-        computed: {
90
-            searchHistory() {
91
-                return this.$store.state.common.searchHistory
92
-            },
123
+    // 数据计算
124
+    computed: {
125
+        searchHistory() {
126
+            return this.$store.state.common.searchHistory;
93 127
         },
128
+    },
94 129
 
95
-        // 数据监听
96
-        watch: {},
97
-    }
130
+    // 数据监听
131
+    watch: {},
132
+};
98 133
 </script>
99 134
 
100 135
 <style>
101
-    page {
102
-        background-color: #fff;
103
-    }
136
+page {
137
+    background-color: #fff;
138
+}
104 139
 </style>
105 140
 
106 141
 <style lang="scss" scoped>
107
-    .search {
108
-        display: flex;
109
-        justify-content: space-between;
110
-        align-items: center;
111
-        width: 100%;
112
-        height: px(128);
113
-        padding: 0 px(45) px(4);
114
-        background-color: #efefef;
115
-
116
-        &__input {
117
-            width: px(820);
118
-            height: px(86);
119
-            padding: 0 px(24);
120
-            font-size: px(36);
121
-            color: #000;
122
-            background-color: #fff;
123
-            border-radius: px(8);
124
-        }
142
+.search {
143
+    display: flex;
144
+    justify-content: space-between;
145
+    align-items: center;
146
+    width: 100%;
147
+    height: px(128);
148
+    padding: 0 px(45) px(4);
149
+    background-color: #efefef;
150
+
151
+    &__input {
152
+        width: px(820);
153
+        height: px(86);
154
+        padding: 0 px(24);
155
+        font-size: px(36);
156
+        color: #000;
157
+        background-color: #fff;
158
+        border-radius: px(8);
159
+    }
125 160
 
126
-        &__cancel {
127
-            font-size: px(36);
128
-            color: #000;
129
-        }
161
+    &__cancel {
162
+        font-size: px(36);
163
+        color: #000;
130 164
     }
165
+}
131 166
 
132
-    .keyword {
133
-        margin-top: px(40);
167
+.keyword {
168
+    margin-top: px(40);
134 169
 
135
-        &__title {
136
-            padding: 0 px(45);
137
-            font-size: px(34);
138
-            color: #9d9d9d;
139
-        }
170
+    &__title {
171
+        padding: 0 px(45);
172
+        font-size: px(34);
173
+        color: #9d9d9d;
140 174
     }
175
+}
176
+
177
+.list {
178
+    display: flex;
179
+    flex-wrap: wrap;
180
+    padding: px(35) px(15) 0 px(45);
141 181
 
142
-    .list {
182
+    &__item {
143 183
         display: flex;
144
-        flex-wrap: wrap;
145
-        padding: px(35) px(15) 0 px(45);
146
-
147
-        &__item {
148
-            display: flex;
149
-            justify-content: center;
150
-            align-items: center;
151
-            height: px(70);
152
-            padding: 0 px(30);
153
-            margin: 0 px(30) px(30) 0;
154
-            font-size: px(28);
155
-            color: #000;
156
-            background-color: #efefef;
157
-            border-radius: px(8);
158
-        }
184
+        justify-content: center;
185
+        align-items: center;
186
+        height: px(70);
187
+        padding: 0 px(30);
188
+        margin: 0 px(30) px(30) 0;
189
+        font-size: px(28);
190
+        color: #000;
191
+        background-color: #efefef;
192
+        border-radius: px(8);
159 193
     }
194
+}
160 195
 </style>

+ 0 - 1
src/pages/index/index.vue

@@ -275,7 +275,6 @@ export default {
275 275
             return this.$store.state.common.activeShop || {};
276 276
         },
277 277
         activeUpShop() {
278
-            console.log(this.$store.state.common.activeUpShop,223)
279 278
             return this.$store.state.common.activeUpShop || {};
280 279
         },
281 280
     },