cr 4 роки тому
батько
коміт
5d8c4915fc

+ 108 - 35
src/pages/manage/cashier/index.vue

@@ -25,7 +25,17 @@
25 25
                         <li
26 26
                             class="category__item"
27 27
                             :class="{
28
-                                'category__item--active': categoryId === '',
28
+                                'category__item--active': viewWeighGood,
29
+                            }"
30
+                            @click="weighGood('')"
31
+                        >
32
+                            称重商品
33
+                        </li>
34
+                        <li
35
+                            class="category__item"
36
+                            :class="{
37
+                                'category__item--active':
38
+                                    categoryId === '' && !viewWeighGood,
29 39
                             }"
30 40
                             @click="setCategory('')"
31 41
                         >
@@ -206,7 +216,10 @@
206 216
                                         </div>
207 217
                                         <div
208 218
                                             class="tools"
209
-                                            v-if="item.skus.length"
219
+                                            v-if="
220
+                                                item.skus.length &&
221
+                                                !viewWeighGood
222
+                                            "
210 223
                                             @click="openSpec(item)"
211 224
                                         >
212 225
                                             <div class="select-spec">
@@ -218,7 +231,8 @@
218 231
                                             class="tools"
219 232
                                             v-if="
220 233
                                                 ifSelect(item) &&
221
-                                                !item.skus.length
234
+                                                !item.skus.length &&
235
+                                                !viewWeighGood
222 236
                                             "
223 237
                                         >
224 238
                                             <span class="select-num">{{
@@ -346,6 +360,8 @@
346 360
         </uni-popup>
347 361
         <!-- 规格选择 -->
348 362
         <g-spec-modal ref="spec" @change="modalCartChange()"></g-spec-modal>
363
+        <!-- 称重 -->
364
+        <g-weigh-modal ref="weigh" @change="modalWeighChange()"></g-weigh-modal>
349 365
         <!-- 挂单 -->
350 366
         <uni-popup ref="popupCache" type="dialog">
351 367
             <uni-popup-dialog
@@ -388,6 +404,7 @@ import uniPopupSpec from "../../../components/uni-popup/uni-popup-spec";
388 404
 import config from "../../../common/js/config";
389 405
 import MyShare from "../../../components/share/index";
390 406
 import GSpecModal from "./specModal";
407
+import GWeighModal from "./weighModal";
391 408
 export default {
392 409
     name: "",
393 410
     filters: {
@@ -408,6 +425,7 @@ export default {
408 425
         MyShare,
409 426
         uniPopupSpec,
410 427
         GSpecModal,
428
+        GWeighModal,
411 429
     },
412 430
     // 数据
413 431
     data() {
@@ -436,6 +454,8 @@ export default {
436 454
             selectList: [],
437 455
             showSelectList: false,
438 456
 
457
+            // 称重商品
458
+            viewWeighGood: false,
439 459
         };
440 460
     },
441 461
 
@@ -506,10 +526,18 @@ export default {
506 526
                 });
507 527
         },
508 528
 
529
+        // 设置称重商品
530
+        weighGood() {
531
+            this.viewWeighGood = true;
532
+            this.categoryId = "";
533
+            this.categoryAllVisible = false;
534
+            this.getGoodsList();
535
+        },
509 536
         // 设置商品分类
510 537
         setCategory(val) {
511 538
             const self = this;
512 539
             this.categoryAllVisible = false;
540
+            this.viewWeighGood = false;
513 541
             // this.searchVal = "";
514 542
             if (val === "") {
515 543
                 // 仓库
@@ -626,23 +654,73 @@ export default {
626 654
         },
627 655
 
628 656
         addCart(good) {
629
-            if (good.skus.length) {
630
-                return;
631
-            }
632
-            let cloneGood = { ...good };
633
-            let flag = true;
634
-            for (let item of this.selectList) {
635
-                if (item.id === cloneGood.id) {
636
-                    item.select_num++;
637
-                    flag = false;
657
+            if (!this.viewWeighGood) {
658
+                // 普通商品
659
+                if (good.skus.length) {
660
+                    return;
638 661
                 }
639
-            }
640
-            if (flag) {
641
-                cloneGood.select_num = 1;
642
-                this.selectList.push(cloneGood);
662
+                let cloneGood = { ...good };
663
+                let flag = true;
664
+                for (let item of this.selectList) {
665
+                    if (item.id === cloneGood.id) {
666
+                        item.select_num++;
667
+                        flag = false;
668
+                    }
669
+                }
670
+                if (flag) {
671
+                    cloneGood.select_num = 1;
672
+                    this.selectList.push(cloneGood);
673
+                }
674
+            } else {
675
+                // 称重商品
676
+                this.openWeightModal(good);
643 677
             }
644 678
         },
645 679
 
680
+        openWeightModal(good) {
681
+            uni.showLoading({
682
+                title: "加载中...",
683
+                mask: true,
684
+            });
685
+            let self = this;
686
+            this.api
687
+                .get("/Product/Detail", {
688
+                    id: good.id,
689
+                })
690
+                .then((goodRes) => {
691
+                    uni.hideLoading();
692
+                    if (goodRes.success) {
693
+                        let goodDetail = goodRes.data;
694
+                        self.$refs.weigh.open(goodDetail, (res, type) => {
695
+                            // if (type === "add") {
696
+                            //     this.selectList.push(res);
697
+                            // } else {
698
+                            //     let arr = [];
699
+                            //     for (let item of this.selectList) {
700
+                            //         if (
701
+                            //             item.id === res.id &&
702
+                            //             item._sku.skuId === res._sku.skuId
703
+                            //         ) {
704
+                            //             if (res.select_num !== 0) {
705
+                            //                 item.select_num = res.select_num;
706
+                            //                 arr.push(item);
707
+                            //             }
708
+                            //         } else {
709
+                            //             arr.push(item);
710
+                            //         }
711
+                            //     }
712
+                            //     this.selectList = arr;
713
+                            // }
714
+                        });
715
+                    } else {
716
+                        self.fn.showModal({
717
+                            title: "获取商品出错",
718
+                            showCancel: false,
719
+                        });
720
+                    }
721
+                });
722
+        },
723
+
646 724
         ifSelect(good) {
647 725
             for (let item of this.selectList) {
648 726
                 if (item.id === good.id) {
@@ -806,19 +884,18 @@ export default {
806 884
 
807 885
         // 挂单显示
808 886
         viewCache() {
809
-            if(this.selectList.length === 0){
810
-                return  this.fn.showToast("请先选择商品");
887
+            if (this.selectList.length === 0) {
888
+                return this.fn.showToast("请先选择商品");
811 889
             }
812
-              this.$refs.popupCache.open({
890
+            this.$refs.popupCache.open({
813 891
                 type: "dialog",
814 892
             });
815 893
         },
816 894
 
817
-        cacheConfirm(done,value) {
818
-
895
+        cacheConfirm(done, value) {
819 896
             this.cacheShow = false;
820
-            console.log(value)
821
-            if(!value){
897
+            console.log(value);
898
+            if (!value) {
822 899
                 return this.fn.showToast("请输入牌号");
823 900
             }
824 901
             uni.showLoading({
@@ -828,20 +905,16 @@ export default {
828 905
             let sendData = {
829 906
                 suspendNo: value,
830 907
                 orderItems: [],
831
-            }
832
-            for(let item of this.selectList){
908
+            };
909
+            for (let item of this.selectList) {
833 910
                 sendData.orderItems.push({
834
-                     productId: item.id,
911
+                    productId: item.id,
835 912
                     skuId: item._sku ? item._sku.skuId : "",
836 913
                     count: item.select_num,
837
-                })
914
+                });
838 915
             }
839 916
             this.api
840
-                .post(
841
-                    "/order/Suspend",
842
-                    sendData,
843
-                    { pass: true }
844
-                )
917
+                .post("/order/Suspend", sendData, { pass: true })
845 918
                 .then((res) => {
846 919
                     this.btnLoading = false;
847 920
                     uni.hideLoading();
@@ -858,9 +931,9 @@ export default {
858 931
                 });
859 932
         },
860 933
 
861
-        goCacheList(){
862
-            this.router.push('/pages/manage/cashier/cache')
863
-        }
934
+        goCacheList() {
935
+            this.router.push("/pages/manage/cashier/cache");
936
+        },
864 937
     },
865 938
 
866 939
     // 数据计算

+ 338 - 0
src/pages/manage/cashier/weighModal.vue

@@ -0,0 +1,338 @@
1
+<template>
2
+    <div class="g-spec-modal" v-if="show" :class="{ page_red: theme === 1 }">
3
+        <div class="bg" @click="close"></div>
4
+        <div class="main">
5
+            <div class="head">
6
+                <span class="tit">{{ good.baseInfo.name }}</span>
7
+                <span class="close" @click="close">×</span>
8
+            </div>
9
+            <ul class="g-list">
10
+                <li class="g-list__item">
11
+                    <div class="g-list__title">单价:</div>
12
+                    <div class="g-list__value">{{ weighData.price }}元</div>
13
+                </li>
14
+                <li class="g-list__item">
15
+                    <div class="g-list__title">重量:</div>
16
+                    <div class="g-list__value">{{ weighData.weight }}g</div>
17
+                </li>
18
+                <li class="g-list__item">
19
+                    <div class="g-list__title">总价:</div>
20
+                    <div class="g-list__value">{{ weighData.amt }}g</div>
21
+                </li>
22
+                <li style="text-align: right;">
23
+                    <span class="refresh" @click="getData">刷新重量</span>
24
+                </li>
25
+            </ul>
26
+
27
+            <div class="modal-bottom">
28
+                <div class="price">
29
+                    ¥
30
+                    <span class="num">{{ weighData.amt }}</span>
31
+                </div>
32
+                <div class="btn" @click="addCart">加入列表</div>
33
+            </div>
34
+        </div>
35
+    </div>
36
+</template>
37
+
38
+<script>
39
+//#ifdef APP-PLUS
40
+var testModule = uni.requireNativePlugin("TestModule");
41
+//#endif
42
+export default {
43
+    name: "GSpecModal",
44
+    components: {},
45
+    props: {},
46
+
47
+    // 数据
48
+    data() {
49
+        return {
50
+            show: false,
51
+            good: {},
52
+            callBack: "",
53
+            weighData: {
54
+                price: "",
55
+                weight: "",
56
+                amt: "",
57
+            },
58
+        };
59
+    },
60
+
61
+    // 函数
62
+    methods: {
63
+        // 打开
64
+        open(good, callBack) {
65
+            const self = this;
66
+            self.show = true;
67
+            self.good = good;
68
+            self.callBack = callBack;
69
+            this.getData();
70
+        },
71
+
72
+        // 关闭
73
+        close() {
74
+            const self = this;
75
+
76
+            self.show = false;
77
+        },
78
+
79
+        // 加入购物车
80
+        addCart() {
81
+            const self = this;
82
+
83
+            if (this.weighData.weight && this.weighData.price) {
84
+                self.fn.showToast("没有称重数据");
85
+            } else {
86
+                // this.callBack(
87
+                //     {
88
+                //         ...this.good.baseInfo,
89
+                //         _sku: this.cartSku,
90
+                //         name:
91
+                //             this.good.baseInfo.name +
92
+                //             "(" +
93
+                //             this.cartSku.key +
94
+                //             ")",
95
+                //         select_num: 1,
96
+                //     },
97
+                //     "add"
98
+                // );
99
+                // for (let item of self.good.skuInfo.skus) {
100
+                //     if (item.skuId === this.cartSku.skuId) {
101
+                //         item.select_num = 1;
102
+                //         this.cartSku = item;
103
+                //     }
104
+                // }
105
+                this.$forceUpdate();
106
+            }
107
+        },
108
+
109
+        getData() {
110
+            var ret = testModule.open({
111
+                name: "unimp",
112
+                age: 1,
113
+            });
114
+            this.getWeight();
115
+            this.getPrice();
116
+            this.getAmt();
117
+        },
118
+
119
+        getWeight() {
120
+            var ret = testModule.getWeight({
121
+                name: "unimp",
122
+                age: 1,
123
+            });
124
+            if (!ret) {
125
+                this.fn.showToast("获取weight错误");
126
+            }
127
+            this.weighData.weight = ret.code;
128
+        },
129
+        getPrice() {
130
+            var ret = testModule.getPrice({
131
+                name: "unimp",
132
+                age: 1,
133
+            });
134
+            if (!ret) {
135
+                this.fn.showToast("获取price错误");
136
+            }
137
+            this.weighData.price = ret.code;
138
+        },
139
+        getAmt() {
140
+            var ret = testModule.getAmt({
141
+                name: "unimp",
142
+                age: 1,
143
+            });
144
+            if (!ret) {
145
+                this.fn.showToast("获取Amt错误");
146
+            }
147
+            this.weighData.amt = ret.code;
148
+        },
149
+    },
150
+
151
+    // 数据计算
152
+    computed: {
153
+        // 判断主题  1:红色  2:绿色
154
+        theme() {
155
+            return this.$store.state.common.theme;
156
+        },
157
+    },
158
+
159
+    // 数据监听
160
+    watch: {},
161
+};
162
+</script>
163
+
164
+<style lang="scss" scoped>
165
+.g-spec-modal {
166
+    position: fixed;
167
+    top: 0;
168
+    left: 0;
169
+    right: 0;
170
+    bottom: 0;
171
+    z-index: 3000;
172
+    .bg {
173
+        width: 100%;
174
+        height: 100%;
175
+        background-color: rgba(0, 0, 0, 0.3);
176
+    }
177
+    .main {
178
+        background-color: #fff;
179
+        border-radius: px(30);
180
+        position: absolute;
181
+        top: 50%;
182
+        left: px(100);
183
+        right: px(100);
184
+        transform: translate(0, -50%);
185
+        max-height: 90vh;
186
+        overflow: auto;
187
+        z-index: 100;
188
+        padding: px(40) 0;
189
+    }
190
+    .head {
191
+        font-size: px(44);
192
+        position: relative;
193
+        padding-bottom: px(30);
194
+        border-bottom: 1px solid #f1f1f1;
195
+        line-height: px(88);
196
+        padding: 0 px(40);
197
+        .close {
198
+            font-size: px(80);
199
+            color: #666;
200
+            position: absolute;
201
+            right: px(40);
202
+            top: 0%;
203
+            z-index: 10;
204
+        }
205
+        .tit {
206
+            margin-right: px(80);
207
+            display: block;
208
+            @include omit(100%);
209
+            width: auto;
210
+        }
211
+    }
212
+}
213
+
214
+.g-list {
215
+    padding: 0 px(40) px(50);
216
+    border-bottom: solid px(3) #fafafa;
217
+
218
+    &__item {
219
+        padding-top: px(40);
220
+        display: flex;
221
+        align-items: center;
222
+    }
223
+
224
+    &__title {
225
+        font-size: px(44);
226
+        color: #333;
227
+        margin-right: px(30);
228
+        color: #666;
229
+    }
230
+}
231
+.refresh {
232
+    margin-top: px(30);
233
+    
234
+    display: inline-block;
235
+    border: 1px solid #d9d9d9;
236
+    color: #333;
237
+    width: px(280);
238
+    height: px(80);
239
+    font-size: px(34);
240
+    text-align: center;
241
+    line-height: px(80);
242
+    border-radius: px(40);
243
+}
244
+
245
+.modal-bottom {
246
+    display: flex;
247
+    margin-top: px(50);
248
+    justify-content: space-between;
249
+    align-items: center;
250
+    padding: 0 px(40);
251
+    .price {
252
+        color: #fe6661;
253
+        font-size: px(40);
254
+        .num {
255
+            font-size: px(50);
256
+        }
257
+    }
258
+    .btn {
259
+        display: block;
260
+        background-color: #27a34f;
261
+        color: #fff;
262
+        width: px(280);
263
+        height: px(80);
264
+        font-size: px(34);
265
+        text-align: center;
266
+        line-height: px(80);
267
+        border-radius: px(40);
268
+    }
269
+}
270
+
271
+.btns {
272
+    display: flex;
273
+    align-items: center;
274
+    .cart-num {
275
+        // padding: px(30) px(10) px(10) px(30);
276
+        padding: 0 px(30);
277
+        box-sizing: border-box;
278
+        min-width: px(60);
279
+    }
280
+    &__add {
281
+        background-color: #27a34f;
282
+        width: px(60);
283
+        height: px(60);
284
+        border-radius: 50%;
285
+        // box-shadow: px(1) px(2) px(6) #27a34f;
286
+        position: relative;
287
+        &::after,
288
+        &::before {
289
+            content: "";
290
+            position: absolute;
291
+            top: 50%;
292
+            left: 50%;
293
+            z-index: 1;
294
+            width: 60%;
295
+            height: px(6);
296
+            border-radius: px(6);
297
+            background: #fff;
298
+        }
299
+        &::after {
300
+            transform: translate(-50%, -50%);
301
+        }
302
+        &::before {
303
+            transform-origin: center;
304
+            transform: translate(-50%, -50%) rotate(90deg);
305
+        }
306
+    }
307
+
308
+    &__remove {
309
+        background-color: #fff;
310
+        width: px(60);
311
+        height: px(60);
312
+        border-radius: 50%;
313
+        border: 1px solid #999;
314
+        position: relative;
315
+        &::after {
316
+            content: "";
317
+            position: absolute;
318
+            top: 50%;
319
+            left: 50%;
320
+            z-index: 1;
321
+            width: 60%;
322
+            height: px(6);
323
+            border-radius: px(6);
324
+            background: #999;
325
+            transform: translate(-50%, -50%);
326
+        }
327
+    }
328
+}
329
+
330
+.page_red {
331
+    .modal-bottom .btn {
332
+        background-color: #fe6661;
333
+    }
334
+    .btns__add {
335
+        background-color: #fe6661;
336
+    }
337
+}
338
+</style>

+ 273 - 286
src/pages/manage/index.vue

@@ -1,360 +1,347 @@
1 1
 <template>
2
-  <div class="page">
3
-    <div class="tips" v-if="shopErr">
4
-      当前店铺没有门店,请后台添加门店后重试
5
-    </div>
6
-    <div v-if="!shopErr">
7
-      <div class="page__top" v-if="isAdmin">
8
-        <div class="name">当前门店:</div>
9
-        <div class="shop" @click="goShopSelect">
10
-          <div class="shop__name">
11
-            <!-- 最多6字 -->
12
-            {{ curShop.name ? curShop.name : "加载中..." }}
13
-            <i class="iconfont iconyoujiantou shop__arrow"></i>
14
-          </div>
2
+    <div class="page">
3
+        <div class="tips" v-if="shopErr">
4
+            当前店铺没有门店,请后台添加门店后重试
15 5
         </div>
16
-      </div>
17
-      <div class="page__top" v-else>
18
-        <div class="name">当前门店:</div>
19
-        <div class="shop">
20
-          <div class="shop__name">
21
-            <!-- 最多6字 -->
6
+        <div v-if="!shopErr" class="main">
7
+            <div class="page__top" v-if="isAdmin">
8
+                <div class="name">当前门店:</div>
9
+                <div class="shop" @click="goShopSelect">
10
+                    <div class="shop__name">
11
+                        <!-- 最多6字 -->
12
+                        {{ curShop.name ? curShop.name : "加载中..." }}
13
+                        <i class="iconfont iconyoujiantou shop__arrow"></i>
14
+                    </div>
15
+                </div>
16
+            </div>
17
+            <div class="page__top" v-else>
18
+                <div class="name">当前门店:</div>
19
+                <div class="shop">
20
+                    <div class="shop__name">
21
+                        <!-- 最多6字 -->
22 22
 
23
-            {{ curShop.name ? curShop.name : "加载中..." }}
24
-            <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
25
-          </div>
26
-        </div>
27
-      </div>
28
-      <ul class="menu" v-if="!menuLoading">
29
-        <li
30
-          class="item"
31
-          v-for="item of menuList"
32
-          :key="item.id"
33
-          @click="jump(item.url)"
34
-        >
35
-          <my-image class="img" :src="item.icon"></my-image>
36
-          <span class="text">{{ item.name }}</span>
37
-        </li>
38
-        <!-- <li class="item" @click="jump('/pages/manage/user/index')">
23
+                        {{ curShop.name ? curShop.name : "加载中..." }}
24
+                        <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
25
+                    </div>
26
+                </div>
27
+            </div>
28
+            <ul class="menu" v-if="!menuLoading">
29
+                <li
30
+                    class="item"
31
+                    v-for="item of menuList"
32
+                    :key="item.id"
33
+                    @click="jump(item.url)"
34
+                >
35
+                    <my-image class="img" :src="item.icon"></my-image>
36
+                    <span class="text">{{ item.name }}</span>
37
+                </li>
38
+                <!-- <li class="item" @click="jump('/pages/manage/user/index')">
39 39
                     <my-image
40 40
                         class="img"
41 41
                         src="/static/icon/user.png"
42 42
                     ></my-image>
43 43
                     <span class="text">账号设置</span>
44 44
                 </li> -->
45
-        <li class="item" @click="jump('/pages/manage/cashier/index')">
46
-          <my-image class="img" src="/static/icon/cashier.png"></my-image>
47
-          <span class="text">收银</span>
48
-        </li>
49
-        <li class="item" @click="jump('/pages/manage/cashier/list')">
50
-          <my-image class="img" src="/static/icon/cashier-list.png"></my-image>
51
-          <span class="text">历史单据</span>
52
-        </li>
53
-        <li class="item" @click="jump('/pages/test/index')">
54
-          <my-image class="img" src="/static/icon/user.png"></my-image>
55
-          <span class="text">app接口测试</span>
56
-        </li>
57
-      </ul>
58
-    </div>
59
-
60
-    <button class="btn" @click="layout">退出登录</button>
45
+                <li class="item" @click="jump('/pages/manage/cashier/index')">
46
+                    <my-image
47
+                        class="img"
48
+                        src="/static/icon/cashier.png"
49
+                    ></my-image>
50
+                    <span class="text">收银</span>
51
+                </li>
52
+                <li class="item" @click="jump('/pages/manage/cashier/list')">
53
+                    <my-image
54
+                        class="img"
55
+                        src="/static/icon/cashier-list.png"
56
+                    ></my-image>
57
+                    <span class="text">历史单据</span>
58
+                </li>
59
+                <li class="item" @click="jump('/pages/test/index')">
60
+                    <my-image
61
+                        class="img"
62
+                        src="/static/icon/user.png"
63
+                    ></my-image>
64
+                    <span class="text">app接口测试</span>
65
+                </li>
66
+            </ul>
67
+            <div class="ver">0.4.2</div>
68
+        </div>
61 69
 
62
-    <div class="ver">0.4.2</div>
63
-  </div>
70
+        <button class="btn" @click="layout">退出登录</button>
71
+    </div>
64 72
 </template>
65 73
 
66 74
 <script>
67 75
 import MyImage from "../../components/image/index";
68 76
 
69 77
 export default {
70
-  name: "",
71
-  components: {
72
-    MyImage,
73
-  },
74
-
75
-  // 数据
76
-  data() {
77
-    return {
78
-      curShop: {},
79
-      shopErr: false,
80
-      menuList: [],
81
-      menuLoading: true,
82
-    };
83
-  },
78
+    name: "",
79
+    components: {
80
+        MyImage,
81
+    },
84 82
 
85
-  onLoad() {
86
-    this.getUserMenu();
87
-    // this.appTest();
88
-  },
89
-  async onShow() {
90
-    if (this.isAdmin) {
91
-      this.curShop = {
92
-        name: this.user.storeName,
93
-        id: this.user.storeId,
94
-      };
95
-      this.getShopList();
96
-    } else {
97
-      if (this.user.storeId) {
98
-        this.curShop = {
99
-          name: this.user.storeName,
100
-          id: this.user.storeId,
83
+    // 数据
84
+    data() {
85
+        return {
86
+            curShop: {},
87
+            shopErr: false,
88
+            menuList: [],
89
+            menuLoading: true,
101 90
         };
102
-      } else {
103
-        this.fn.showModal({
104
-          content: "当前用户无门店设置,请前往后台设置所属店铺",
105
-        });
106
-        // this.getShopList();
107
-      }
108
-    }
109
-  },
110
-  // 函数
111
-  methods: {
91
+    },
92
+
112 93
     onLoad() {
113
-      this.getUserMenu();
94
+        this.getUserMenu();
95
+        // this.appTest();
114 96
     },
115 97
     async onShow() {
116
-      if (this.isAdmin) {
117
-        this.curShop = {
118
-          name: this.user.storeName,
119
-          id: this.user.storeId,
120
-        };
121
-        this.getShopList();
122
-      } else {
123
-        if (this.user.storeId) {
124
-          this.curShop = {
125
-            name: this.user.storeName,
126
-            id: this.user.storeId,
127
-          };
98
+        if (this.isAdmin) {
99
+            this.curShop = {
100
+                name: this.user.storeName,
101
+                id: this.user.storeId,
102
+            };
103
+            this.getShopList();
128 104
         } else {
129
-          this.fn.showModal({
130
-            content: "当前用户无门店设置,请前往后台设置所属店铺",
131
-          });
132
-          // this.getShopList();
105
+            if (this.user.storeId) {
106
+                this.curShop = {
107
+                    name: this.user.storeName,
108
+                    id: this.user.storeId,
109
+                };
110
+            } else {
111
+                this.fn.showModal({
112
+                    content: "当前用户无门店设置,请前往后台设置所属店铺",
113
+                });
114
+                // this.getShopList();
115
+            }
133 116
         }
134
-      }
135 117
     },
136 118
     // 函数
137 119
     methods: {
138
-      getUserMenu() {
139
-        uni.showLoading({
140
-          title: "加载中...",
141
-        });
142
-        this.menuLoading = true;
143
-        this.api
144
-          .get("/User/GetUserMenu", { userId: this.user.id })
145
-          .then((res) => {
146
-            if (res.data.userMenu) {
147
-              let userMenu = res.data.userMenu.mobile;
148
-              let mobileMenu = res.data.menu.mobile;
149
-              if (userMenu && userMenu.length) {
150
-                this.initMenu(mobileMenu, userMenu);
151
-              }
152
-            }
153
-            this.menuLoading = false;
154
-            uni.hideLoading();
155
-          });
156
-      },
120
+        getUserMenu() {
121
+            uni.showLoading({
122
+                title: "加载中...",
123
+            });
124
+            this.menuLoading = true;
125
+            this.api
126
+                .get("/User/GetUserMenu", { userId: this.user.id })
127
+                .then((res) => {
128
+                    if (res.data.userMenu) {
129
+                        let userMenu = res.data.userMenu.mobile;
130
+                        let mobileMenu = res.data.menu.mobile;
131
+                        if (userMenu && userMenu.length) {
132
+                            this.initMenu(mobileMenu, userMenu);
133
+                        }
134
+                    }
135
+                    this.menuLoading = false;
136
+                    uni.hideLoading();
137
+                });
138
+        },
157 139
 
158
-      initMenu(menu, userMenu) {
159
-        let arr = [];
160
-        for (let item of menu) {
161
-          for (let userItem of userMenu) {
162
-            if (userItem.id === item.id && userItem.status === 1) {
163
-              let obj = item;
164
-              let childArr = [];
165
-              if (userItem.children && userItem.children.length) {
166
-                for (let userChild of userItem.children) {
167
-                  for (let child of item.children) {
168
-                    if (userChild.id === child.id && userChild.status === 1) {
169
-                      childArr.push(child);
140
+        initMenu(menu, userMenu) {
141
+            let arr = [];
142
+            for (let item of menu) {
143
+                for (let userItem of userMenu) {
144
+                    if (userItem.id === item.id && userItem.status === 1) {
145
+                        let obj = item;
146
+                        let childArr = [];
147
+                        if (userItem.children && userItem.children.length) {
148
+                            for (let userChild of userItem.children) {
149
+                                for (let child of item.children) {
150
+                                    if (
151
+                                        userChild.id === child.id &&
152
+                                        userChild.status === 1
153
+                                    ) {
154
+                                        childArr.push(child);
155
+                                    }
156
+                                }
157
+                            }
158
+                        }
159
+                        obj.children = childArr;
160
+                        arr.push(obj);
170 161
                     }
171
-                  }
172 162
                 }
173
-              }
174
-              obj.children = childArr;
175
-              arr.push(obj);
176 163
             }
177
-          }
178
-        }
179
-        this.$store.commit("user/update", {
180
-          menuList: arr,
181
-        });
182
-        this.menuList = arr;
183
-      },
184
-
185
-      getShopList() {
186
-        uni.showLoading({
187
-          title: "加载中...",
188
-        });
189
-        this.api.get("/Store/GetShopList").then((res) => {
190
-          if (res.data.length === 0) {
191
-            this.shopErr = true;
192
-          }
193
-          this.shopList = res.data;
194
-          uni.hideLoading();
195
-          uni.stopPullDownRefresh();
196
-          if (!this.curShop.id) {
197
-            this.curShop = res.data[0];
198
-            let user = { ...this.$store.state.user.user };
199
-            user.storeId = this.curShop.id;
200
-            user.storeName = this.curShop.name;
201 164
             this.$store.commit("user/update", {
202
-              user,
165
+                menuList: arr,
203 166
             });
204
-          }
205
-        });
206
-      },
167
+            this.menuList = arr;
168
+        },
207 169
 
208
-      goShopSelect() {
209
-        this.router.push({
210
-          path: "/pages/index/select",
211
-          query: {
212
-            entry: "manage",
213
-          },
214
-        });
215
-      },
170
+        getShopList() {
171
+            uni.showLoading({
172
+                title: "加载中...",
173
+            });
174
+            this.api.get("/Store/GetShopList").then((res) => {
175
+                if (res.data.length === 0) {
176
+                    this.shopErr = true;
177
+                }
178
+                this.shopList = res.data;
179
+                uni.hideLoading();
180
+                uni.stopPullDownRefresh();
181
+                if (!this.curShop.id) {
182
+                    this.curShop = res.data[0];
183
+                    let user = { ...this.$store.state.user.user };
184
+                    user.storeId = this.curShop.id;
185
+                    user.storeName = this.curShop.name;
186
+                    this.$store.commit("user/update", {
187
+                        user,
188
+                    });
189
+                }
190
+            });
191
+        },
192
+
193
+        goShopSelect() {
194
+            this.router.push({
195
+                path: "/pages/index/select",
196
+                query: {
197
+                    entry: "manage",
198
+                },
199
+            });
200
+        },
216 201
 
217
-      layout() {
218
-        this.$store.commit("user/logout", null);
219
-        this.router.replace({
220
-          path: "/pages/index/login",
221
-          isReLaunch: true,
222
-        });
223
-      },
202
+        layout() {
203
+            this.$store.commit("user/logout", null);
204
+            this.router.replace({
205
+                path: "/pages/index/login",
206
+                isReLaunch: true,
207
+            });
208
+        },
224 209
     },
225 210
 
226 211
     // 数据计算
227 212
     computed: {
228
-      user() {
229
-        return this.$store.state.user.user;
230
-      },
231
-      isAdmin() {
232
-        //店铺管理员  系统管理员
233
-        if (
234
-          this.user.roleId === "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
235
-          this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"
236
-        ) {
237
-          return true;
238
-        } else {
239
-          return false;
240
-        }
241
-      },
213
+        user() {
214
+            return this.$store.state.user.user;
215
+        },
216
+        isAdmin() {
217
+            //店铺管理员  系统管理员
218
+            if (
219
+                this.user.roleId === "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
220
+                this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"
221
+            ) {
222
+                return true;
223
+            } else {
224
+                return false;
225
+            }
226
+        },
242 227
     },
243 228
 
244 229
     // 数据监听
245 230
     watch: {},
246
-  },
247 231
 };
248 232
 </script>
249 233
 
250 234
 <style lang="scss" scoped>
251 235
 .page {
252
-  &__top {
253
-    display: flex;
254
-    align-items: center;
255
-    justify-content: space-between;
256
-    height: px(145);
257
-    padding: 0 px(50);
258
-    background-color: #fff;
259
-    border-bottom: 1px solid #f1f1f1;
260
-  }
236
+    &__top {
237
+        display: flex;
238
+        align-items: center;
239
+        justify-content: space-between;
240
+        height: px(145);
241
+        padding: 0 px(50);
242
+        background-color: #fff;
243
+        border-bottom: 1px solid #f1f1f1;
244
+    }
261 245
 
262
-  .name {
263
-    font-size: px(36);
264
-    color: #999;
265
-    flex-shrink: 0;
266
-    margin-right: px(20);
267
-  }
246
+    .name {
247
+        font-size: px(36);
248
+        color: #999;
249
+        flex-shrink: 0;
250
+        margin-right: px(20);
251
+    }
268 252
 }
269 253
 
270 254
 .shop {
271
-  display: flex;
272
-  color: #666;
273
-  font-size: px(36);
274
-  flex-shrink: 0;
275
-  margin-right: px(30);
276
-  width: 100%;
255
+    display: flex;
256
+    color: #666;
257
+    font-size: px(36);
258
+    flex-shrink: 0;
259
+    margin-right: px(30);
260
+    width: 100%;
277 261
 
278
-  &__logo {
279
-    margin-right: px(20);
280
-    width: px(80);
281
-    height: px(80);
282
-    border-radius: 50%;
283
-    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
284
-    overflow: hidden;
262
+    &__logo {
263
+        margin-right: px(20);
264
+        width: px(80);
265
+        height: px(80);
266
+        border-radius: 50%;
267
+        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
268
+        overflow: hidden;
285 269
 
286
-    /deep/ img {
287
-      width: px(80);
288
-      height: px(80);
270
+        /deep/ img {
271
+            width: px(80);
272
+            height: px(80);
273
+        }
289 274
     }
290
-  }
291 275
 
292
-  &__name {
293
-    display: flex;
294
-    white-space: nowrap;
295
-    align-items: center;
296
-  }
276
+    &__name {
277
+        display: flex;
278
+        white-space: nowrap;
279
+        align-items: center;
280
+    }
297 281
 
298
-  &__arrow {
299
-    margin-left: px(10);
300
-    transform: rotate(90deg);
301
-  }
282
+    &__arrow {
283
+        margin-left: px(10);
284
+        transform: rotate(90deg);
285
+    }
302 286
 }
303 287
 
304 288
 .menu {
305
-  display: flex;
306
-  flex-wrap: wrap;
307
-  border-top: 1px solid #f1f1f1;
308
-
309
-  .item {
310
-    width: 33.333333%;
311
-    height: px(330);
312
-    flex-shrink: 0;
313 289
     display: flex;
314
-    flex-direction: column;
315
-    justify-content: center;
316
-    align-items: center;
317
-    font-size: px(44);
318
-    background-color: #fff;
319
-    border-bottom: 1px solid #f1f1f1;
290
+    flex-wrap: wrap;
291
+    border-top: 1px solid #f1f1f1;
320 292
 
321
-    /deep/ img {
322
-      width: px(90);
323
-      height: px(90);
324
-      margin-bottom: px(30);
325
-    }
293
+    .item {
294
+        width: 33.333333%;
295
+        height: px(330);
296
+        flex-shrink: 0;
297
+        display: flex;
298
+        flex-direction: column;
299
+        justify-content: center;
300
+        align-items: center;
301
+        font-size: px(44);
302
+        background-color: #fff;
303
+        border-bottom: 1px solid #f1f1f1;
304
+
305
+        /deep/ img {
306
+            width: px(90);
307
+            height: px(90);
308
+            margin-bottom: px(30);
309
+        }
326 310
 
327
-    &:nth-child(3n-1),
328
-    &:nth-child(3n) {
329
-      border-left: 1px solid #f1f1f1;
311
+        &:nth-child(3n-1),
312
+        &:nth-child(3n) {
313
+            border-left: 1px solid #f1f1f1;
314
+        }
330 315
     }
331
-  }
332 316
 }
333 317
 
334 318
 .ver {
335
-  margin-top: px(30);
336
-  font-size: px(30);
337
-  text-align: center;
338
-  color: #aaa;
319
+    margin-top: px(30);
320
+    font-size: px(30);
321
+    text-align: center;
322
+    color: #aaa;
339 323
 }
340 324
 
325
+.main {
326
+    padding-bottom: px(150);
327
+}
341 328
 .btn {
342
-  position: fixed;
343
-  bottom: px(50);
344
-  left: px(30);
345
-  right: px(30);
346
-  z-index: 10;
347
-  color: #fff;
348
-  background-color: #e92e25;
349
-  font-size: px(44);
329
+    position: fixed;
330
+    bottom: px(50);
331
+    left: px(30);
332
+    right: px(30);
333
+    z-index: 10;
334
+    color: #fff;
335
+    background-color: #e92e25;
336
+    font-size: px(44);
350 337
 }
351 338
 
352 339
 .tips {
353
-  background-color: #fef9f3;
354
-  font-size: px(40);
355
-  padding: 0 px(40);
356
-  height: px(100);
357
-  line-height: px(100);
358
-  color: #ec883d;
340
+    background-color: #fef9f3;
341
+    font-size: px(40);
342
+    padding: 0 px(40);
343
+    height: px(100);
344
+    line-height: px(100);
345
+    color: #ec883d;
359 346
 }
360 347
 </style>

+ 69 - 67
src/pages/test/index.vue

@@ -1,83 +1,85 @@
1 1
 <template>
2
-  <div class="page">
3
-    <div>
4
-      <button @click="open">open</button>
5
-      <!-- <button @click="testAsyncFunc">testAsyncFunc</button> -->
6
-      <button @click="getWeight">getWeight</button>
7
-      <button @click="getPrice">getPrice</button>
8
-      <button @click="getAmt">getAmt</button>
2
+    <div class="page">
3
+        <div>
4
+            <button @click="open">open</button>
5
+            <!-- <button @click="testAsyncFunc">testAsyncFunc</button> -->
6
+            <button @click="getWeight">getWeight</button>
7
+            <button @click="getPrice">getPrice</button>
8
+            <button @click="getAmt">getAmt</button>
9
+        </div>
10
+        <div>
11
+            {{ dataStr }}
12
+        </div>
9 13
     </div>
10
-    <div>
11
-      {{ dataStr }}
12
-    </div>
13
-  </div>
14 14
 </template>
15 15
 
16 16
 <script>
17 17
 import MyImage from "../../components/image/index";
18
+//#ifdef APP-PLUS
18 19
 var testModule = uni.requireNativePlugin("TestModule");
20
+//#endif
19 21
 
20 22
 export default {
21
-  name: "",
22
-  components: { MyImage },
23
-  // 数据
24
-  data() {
25
-    return {
26
-      dataStr: "",
27
-    };
28
-  },
29
-  filters: {},
30
-  onLoad() {},
31
-  async onShow() {},
32
-  // 函数
33
-  methods: {
34
-    open() {
35
-      this.dataStr = "获取中...";
36
-      var ret = testModule.open({
37
-        name: "unimp",
38
-        age: 1,
39
-      });
40
-      this.dataStr = JSON.stringify(ret);
41
-    },
42
-    testAsyncFunc() {
43
-      this.dataStr = "获取中...";
44
-      var ret = testModule.testSyncFunc({
45
-        name: "unimp",
46
-        age: 1,
47
-      });
48
-      this.dataStr = JSON.stringify(ret);
49
-    },
50
-    getWeight() {
51
-      this.dataStr = "获取中...";
52
-      var ret = testModule.getWeight({
53
-        name: "unimp",
54
-        age: 1,
55
-      });
56
-      this.dataStr = JSON.stringify(ret);
57
-    },
58
-    getPrice() {
59
-      this.dataStr = "获取中...";
60
-      var ret = testModule.getPrice({
61
-        name: "unimp",
62
-        age: 1,
63
-      });
64
-      this.dataStr = JSON.stringify(ret);
23
+    name: "",
24
+    components: { MyImage },
25
+    // 数据
26
+    data() {
27
+        return {
28
+            dataStr: "",
29
+        };
65 30
     },
66
-    getAmt() {
67
-      this.dataStr = "获取中...";
68
-      var ret = testModule.getAmt({
69
-        name: "unimp",
70
-        age: 1,
71
-      });
72
-      this.dataStr = JSON.stringify(ret);
31
+    filters: {},
32
+    onLoad() {},
33
+    async onShow() {},
34
+    // 函数
35
+    methods: {
36
+        open() {
37
+            this.dataStr = "获取中...";
38
+            var ret = testModule.open({
39
+                name: "unimp",
40
+                age: 1,
41
+            });
42
+            this.dataStr = JSON.stringify(ret);
43
+        },
44
+        testAsyncFunc() {
45
+            this.dataStr = "获取中...";
46
+            var ret = testModule.testSyncFunc({
47
+                name: "unimp",
48
+                age: 1,
49
+            });
50
+            this.dataStr = JSON.stringify(ret);
51
+        },
52
+        getWeight() {
53
+            this.dataStr = "获取中...";
54
+            var ret = testModule.getWeight({
55
+                name: "unimp",
56
+                age: 1,
57
+            });
58
+            this.dataStr = JSON.stringify(ret);
59
+        },
60
+        getPrice() {
61
+            this.dataStr = "获取中...";
62
+            var ret = testModule.getPrice({
63
+                name: "unimp",
64
+                age: 1,
65
+            });
66
+            this.dataStr = JSON.stringify(ret);
67
+        },
68
+        getAmt() {
69
+            this.dataStr = "获取中...";
70
+            var ret = testModule.getAmt({
71
+                name: "unimp",
72
+                age: 1,
73
+            });
74
+            this.dataStr = JSON.stringify(ret);
75
+        },
73 76
     },
74
-  },
75 77
 
76
-  // 数据计算
77
-  computed: {},
78
+    // 数据计算
79
+    computed: {},
78 80
 
79
-  // 数据监听
80
-  watch: {},
81
+    // 数据监听
82
+    watch: {},
81 83
 };
82 84
 </script>
83 85