Browse Source

增加门店过滤

cr 4 years ago
parent
commit
abeac8610b

+ 4 - 0
releaselog.md

@@ -1,4 +1,8 @@
1 1
 
2
+# 0.1.7 (20.11.4 18:00)
3
+### 增加门店过滤 
4
+
5
+
2 6
 # 0.1.6 (20.10.20 18:00)
3 7
 ### 增加用户名称,修改bug
4 8
 

+ 1 - 0
src/App.vue

@@ -45,6 +45,7 @@
45 45
 
46 46
             // 登录处理
47 47
             await self.fn.login(option)
48
+            // self.fn.getStoreList();
48 49
 
49 50
             // 修改配置
50 51
             // self.fn.setConfig()

+ 1 - 0
src/common/api/ajax.js

@@ -74,6 +74,7 @@ const http = {
74 74
                 'companyId': store.state.user.user ? store.state.user.user.companyId : '',
75 75
                 'userId': store.state.user.user ? store.state.user.user.id : '',
76 76
                 'Authorization': 'Bearer ' + store.state.user.token,
77
+                'StoreId': store.state.common.curShop.id || ''
77 78
             },
78 79
             method: type,
79 80
         })

+ 2 - 0
src/common/js/plugin.js

@@ -299,6 +299,8 @@ export default {
299 299
         })
300 300
     },
301 301
 
302
+
303
+
302 304
     // 获取token
303 305
     getToken() {
304 306
         return new Promise(resolve => {

+ 2 - 0
src/common/store/common.js

@@ -6,6 +6,8 @@ const module = {
6 6
     // 仓库
7 7
     state: {
8 8
         iphoneX:false,
9
+        curShop:{},
10
+        tabIndex:0,
9 11
     },
10 12
 
11 13
     // 同步方法

+ 8 - 2
src/pages.json

@@ -10,8 +10,7 @@
10 10
         {
11 11
             "path": "pages/index/index",
12 12
             "style": {
13
-                "navigationBarTitleText": "配送助手",
14
-                "enablePullDownRefresh": true
13
+                "navigationBarTitleText": "配送助手"
15 14
             }
16 15
         },
17 16
         {
@@ -20,6 +19,13 @@
20 19
                 "navigationBarTitleText": "绑定手机号",
21 20
                 "enablePullDownRefresh": true
22 21
             }
22
+        },
23
+        {
24
+            "path": "pages/index/select",
25
+            "style": {
26
+                "navigationBarTitleText": "门店选择",
27
+                "enablePullDownRefresh": true
28
+            }
23 29
         }
24 30
     ]
25 31
 }

+ 81 - 13
src/pages/index/index.vue

@@ -1,5 +1,17 @@
1 1
 <template>
2
-    <div class="page">
2
+    <div class="page">        
3
+        <div class="page__top">
4
+            <div class="name">
5
+                当前门店:
6
+            </div>
7
+            <div class="shop" v-if="!hideShop" @click="goShopSelect">
8
+                <div class="shop__name">
9
+                    <!-- 最多6字 -->
10
+                    {{ curShopName }}
11
+                    <i class="iconfont iconyoujiantou shop__arrow"></i>
12
+                </div>
13
+            </div>
14
+        </div>
3 15
         <ul class="tab">
4 16
             <li
5 17
                 class="tab__item"
@@ -343,10 +355,6 @@ export default {
343 355
         },
344 356
     },
345 357
 
346
-    onLoad() {
347
-        const self = this;
348
-    },
349
-
350 358
     async onShow() {
351 359
         const self = this;
352 360
         // 未授权
@@ -362,18 +370,24 @@ export default {
362 370
         //     return;
363 371
         // }
364 372
         await self.fn.init();
365
-
366
-        self.fn.shareMenu({});
373
+        self.tab = this.$store.state.common.tabIndex;
367 374
         this.getList();
368 375
     },
369 376
 
377
+    // onPullDownRefresh() {
378
+    //     const self = this;
379
+    //     self.getList();
380
+    // },
381
+
370 382
     // 函数
371 383
     methods: {
372 384
         // 切换导航
373 385
         setTab(index) {
374 386
             const self = this;
375
-            console.log(index)
376 387
             self.tab = index;
388
+             this.$store.commit("common/update", {
389
+                tabIndex: index,
390
+            });
377 391
         },
378 392
 
379 393
         // swiper切换处理
@@ -383,17 +397,15 @@ export default {
383 397
             self.getList();
384 398
         },
385 399
 
386
-        onPullDownRefresh() {
387
-            const self = this;
388
-            self.getList();
389
-        },
390
-
391 400
         // 获取订单列表
392 401
         getList() {
393 402
             const self = this;
394 403
 
395 404
             self.list[self.tab].page = 1;
396 405
 
406
+            uni.showLoading({
407
+                title: "加载中...",
408
+            });
397 409
             self.api
398 410
                 .get("/Order/GetList", {
399 411
                     status: self.list[self.tab].status,
@@ -401,6 +413,7 @@ export default {
401 413
                     pageSize: 20,
402 414
                 })
403 415
                 .then((res) => {
416
+                    uni.hideLoading();
404 417
                     let data = res.data.data;
405 418
 
406 419
                     if (data.length) {
@@ -588,6 +601,10 @@ export default {
588 601
                 },
589 602
             });
590 603
         },
604
+
605
+        goShopSelect(){
606
+            this.router.push("/pages/index/select");
607
+        },
591 608
     },
592 609
 
593 610
     // 数据计算
@@ -598,6 +615,10 @@ export default {
598 615
         noPower() {
599 616
             return this.$store.state.user.noPower;
600 617
         },
618
+
619
+        curShopName(){
620
+            return this.$store.state.common.curShop.name || '不限门店';
621
+        }
601 622
     },
602 623
 
603 624
     // 数据监听
@@ -612,6 +633,53 @@ page {
612 633
 </style>
613 634
 
614 635
 <style lang="scss" scoped>
636
+.page {
637
+    &__top {
638
+        display: flex;
639
+        align-items: center;
640
+        justify-content: space-between;
641
+        height: px(145);
642
+        padding: 0 px(50);
643
+        background-color: #fff;
644
+        border-bottom: 1px solid #f1f1f1;
645
+    }
646
+    .name{
647
+        font-size: px(36);
648
+        color: #999;
649
+        flex-shrink: 0;
650
+        margin-right: px(20);;
651
+    }
652
+}
653
+
654
+.shop {
655
+    display: flex;
656
+    color: #666;
657
+    font-size: px(36);
658
+    flex-shrink: 0;
659
+    margin-right: px(30);
660
+    width: 100%;
661
+    &__logo {
662
+        margin-right: px(20);
663
+        width: px(80);
664
+        height: px(80);
665
+        border-radius: 50%;
666
+        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
667
+        overflow: hidden;
668
+        /deep/ img {
669
+            width: px(80);
670
+            height: px(80);
671
+        }
672
+    }
673
+    &__name {
674
+        display: flex;
675
+        white-space: nowrap;
676
+        align-items: center;
677
+    }
678
+    &__arrow {
679
+        margin-left: px(10);
680
+        transform: rotate(90deg);
681
+    }
682
+}
615 683
 .page {
616 684
     display: flex;
617 685
     flex-direction: column;

+ 185 - 0
src/pages/index/select.vue

@@ -0,0 +1,185 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="shop-select">
4
+            <ul class="list">
5
+                <li
6
+                    class="item"
7
+                    @click="shopClick({})"
8
+                    :class="{ on: !curShop.id }"
9
+                >
10
+                    <div class="info">
11
+                        <div class="title">
12
+                            不限门店
13
+                            <my-image
14
+                                class="selected"
15
+                                src="/static/icon/select2.png"
16
+                            ></my-image>
17
+                        </div>
18
+                    </div>
19
+                </li>
20
+                <li
21
+                    class="item"
22
+                    :class="{ on: curShop.id === item.id }"
23
+                    v-for="item of shopList"
24
+                    :key="item.id"
25
+                    @click="shopClick(item)"
26
+                >
27
+                    <!-- <my-image
28
+                                class="logo"
29
+                                src="https://whcoss.chuangzhikeji.com/images/621b9cc5-11b3-4d0e-ad82-981351e25336/1595236331022_600x600.jpg"
30
+                    ></my-image>-->
31
+                    <div class="info">
32
+                        <div class="title">
33
+                            {{ item.name }}
34
+                            <!-- <span class="raising">支持自提</span> -->
35
+                            <!-- <span class="selected">✔</span> -->
36
+                            <my-image
37
+                                class="selected"
38
+                                src="/static/icon/select2.png"
39
+                            ></my-image>
40
+                        </div>
41
+                        <p class="add-info">
42
+                            <span>{{
43
+                                item.province +
44
+                                item.city +
45
+                                item.county +
46
+                                item.address
47
+                            }}</span>
48
+                            <!-- <span class="distance">1.36km</span> -->
49
+                        </p>
50
+                    </div>
51
+                </li>
52
+            </ul>
53
+        </div>
54
+    </div>
55
+</template>
56
+
57
+<script>
58
+import MyImage from "../../components/image/index";
59
+
60
+import appConfig from "./../../common/js/config";
61
+export default {
62
+    name: "",
63
+    components: { MyImage },
64
+
65
+    // 数据
66
+    data() {
67
+        return {
68
+            shopList: [],
69
+            curShop: {},
70
+            curShop: {},
71
+        };
72
+    },
73
+
74
+    async onShow() {
75
+        this.curShop = this.$store.state.common.curShop;
76
+        this.getList();
77
+    },
78
+    onPullDownRefresh() {
79
+        this.getList();
80
+    },
81
+    // 函数
82
+    methods: {
83
+        getList() {
84
+            uni.showLoading({
85
+                title: "加载中...",
86
+            });
87
+            this.api.get("/Store/GetShopList").then((res) => {
88
+                this.shopList = res.data;
89
+                uni.hideLoading();
90
+                uni.stopPullDownRefresh();
91
+            });
92
+        },
93
+
94
+        shopClick(v) {
95
+            this.curShop = v;
96
+            this.$store.commit("common/update", {
97
+                curShop: v,
98
+            });
99
+            this.router.back();
100
+        },
101
+    },
102
+
103
+    // 数据计算
104
+    computed: {
105
+    },
106
+
107
+    // 数据监听
108
+    watch: {},
109
+};
110
+</script>
111
+
112
+<style lang="scss" scoped>
113
+.shop-select {
114
+    background-color: #fff;
115
+    .item {
116
+        display: flex;
117
+        justify-content: space-between;
118
+        padding: px(30);
119
+        border-bottom: 1px solid #f1f1f1;
120
+        &.on {
121
+            .title .selected {
122
+                display: block;
123
+            }
124
+        }
125
+        .logo {
126
+            width: px(110);
127
+            height: px(110);
128
+            overflow: hidden;
129
+            border-radius: 50%;
130
+            border: 1px solid #f1f1f1;
131
+            margin-right: px(40);
132
+            flex-shrink: 0;
133
+            /deep/ img {
134
+                width: px(110);
135
+                height: px(110);
136
+            }
137
+        }
138
+        .info {
139
+            width: 100%;
140
+        }
141
+        .title {
142
+            font-size: px(50);
143
+            position: relative;
144
+            padding-right: px(100);
145
+            line-height: px(60);
146
+            position: relative;
147
+            overflow: hidden;
148
+            text-overflow: ellipsis;
149
+            white-space: nowrap;
150
+            .raising {
151
+                font-size: px(30);
152
+                margin-left: px(30);
153
+                color: #a6b4e3;
154
+            }
155
+            .selected {
156
+                width: px(60);
157
+                height: px(60);
158
+                position: absolute;
159
+                right: 0;
160
+                top: 50%;
161
+                z-index: 1;
162
+                transform: translate(0, -50%);
163
+                display: none;
164
+                /deep/ img {
165
+                    width: px(60);
166
+                    height: px(60);
167
+                }
168
+            }
169
+        }
170
+        .add-info {
171
+            margin-top: px(20);
172
+            font-size: px(32);
173
+            display: flex;
174
+            justify-content: space-between;
175
+            font-size: px(34);
176
+            line-height: px(40);
177
+            .distance {
178
+                flex-shrink: 0;
179
+                font-size: px(30);
180
+                margin-left: px(40);
181
+            }
182
+        }
183
+    }
184
+}
185
+</style>

BIN
src/static/icon/select2.png