cr %!s(int64=3) %!d(string=hai) anos
pai
achega
53cd94b4a3

+ 28 - 24
src/pages/goods/category.vue

@@ -1,5 +1,5 @@
1
 <template>
1
 <template>
2
-    <div class="page-main  page_red" :style="{ height: pageH }">
2
+    <div class="page-main page_red" :style="{ height: pageH }">
3
         <div class="page__content">
3
         <div class="page__content">
4
             <div class="page__box">
4
             <div class="page__box">
5
                 <scroll-view class="category" :scroll-y="scrollY">
5
                 <scroll-view class="category" :scroll-y="scrollY">
@@ -295,7 +295,11 @@
295
             :spec="'cart'"
295
             :spec="'cart'"
296
             @change="modalCartChange()"
296
             @change="modalCartChange()"
297
         ></g-spec-modal>
297
         ></g-spec-modal>
298
-        <shop-cart v-if="loginAfter" ref="shopCart" @change="cartChange()"></shop-cart>
298
+        <shop-cart
299
+            v-if="loginAfter"
300
+            ref="shopCart"
301
+            @change="cartChange()"
302
+        ></shop-cart>
299
     </div>
303
     </div>
300
 </template>
304
 </template>
301
 
305
 
@@ -307,16 +311,16 @@ import GSpecModal from "./specModal";
307
 import config from "../../common/js/config";
311
 import config from "../../common/js/config";
308
 export default {
312
 export default {
309
     name: "",
313
     name: "",
310
-    components: { MyImage,ShopCart,GSpec,GSpecModal },
311
-    props:{
312
-        loginAfter:{
313
-            type:Boolean,
314
-            default:false,
314
+    components: { MyImage, ShopCart, GSpec, GSpecModal },
315
+    props: {
316
+        loginAfter: {
317
+            type: Boolean,
318
+            default: false,
319
+        },
320
+        cateId: {
321
+            type: String,
322
+            default: "",
315
         },
323
         },
316
-        cateId:{
317
-            type:String,
318
-            default:'',
319
-        }
320
     },
324
     },
321
     // 数据
325
     // 数据
322
     data() {
326
     data() {
@@ -338,14 +342,14 @@ export default {
338
             shopId: "", //店铺id
342
             shopId: "", //店铺id
339
             index: 1,
343
             index: 1,
340
             pageH: "90vh",
344
             pageH: "90vh",
341
-            scrollY:false
345
+            scrollY: false,
342
         };
346
         };
343
     },
347
     },
344
 
348
 
345
     async created() {
349
     async created() {
346
         this.initHeight();
350
         this.initHeight();
347
         this.refresh();
351
         this.refresh();
348
-        if(this.cateId){
352
+        if (this.cateId) {
349
             this.categoryId = this.cateId;
353
             this.categoryId = this.cateId;
350
         }
354
         }
351
     },
355
     },
@@ -358,16 +362,18 @@ export default {
358
 
362
 
359
     // 函数
363
     // 函数
360
     methods: {
364
     methods: {
361
-        setScrollY(v){
365
+        setScrollY(v) {
362
             this.scrollY = v;
366
             this.scrollY = v;
363
         },
367
         },
364
 
368
 
365
-        refresh() {
366
-            this.categoryId = '';
367
-            this.subCategoryId = '';
369
+        refresh(setShop) {
370
+            if (setShop) {
371
+                this.categoryId = "";
372
+                this.subCategoryId = "";
373
+            }
368
             this.getCategory();
374
             this.getCategory();
369
             // console.log(this.$refs.shopCart,1243)
375
             // console.log(this.$refs.shopCart,1243)
370
-            if(this.$refs.shopCart && this.$refs.shopCart.refresh){
376
+            if (this.$refs.shopCart && this.$refs.shopCart.refresh) {
371
                 this.$refs.shopCart.refresh();
377
                 this.$refs.shopCart.refresh();
372
             }
378
             }
373
             // this.getGoodsList();
379
             // this.getGoodsList();
@@ -384,7 +390,7 @@ export default {
384
                         statusBarHeight +
390
                         statusBarHeight +
385
                         menuButtonObject.height +
391
                         menuButtonObject.height +
386
                         (menuButtonObject.top - statusBarHeight) * 2;
392
                         (menuButtonObject.top - statusBarHeight) * 2;
387
-                    this.pageH = innerHeight - navHeight-navHeight + "px";
393
+                    this.pageH = innerHeight - navHeight - navHeight + "px";
388
                 },
394
                 },
389
             });
395
             });
390
         },
396
         },
@@ -583,8 +589,8 @@ export default {
583
                             .then((res) => {
589
                             .then((res) => {
584
                                 if (res.confirm) {
590
                                 if (res.confirm) {
585
                                     self.router.push({
591
                                     self.router.push({
586
-                                        path:'/pages/goods/index',
587
-                                        isTabBer:true
592
+                                        path: "/pages/goods/index",
593
+                                        isTabBer: true,
588
                                     });
594
                                     });
589
                                 }
595
                                 }
590
                             });
596
                             });
@@ -592,7 +598,6 @@ export default {
592
                 });
598
                 });
593
         },
599
         },
594
 
600
 
595
-
596
         // 打开规则选项
601
         // 打开规则选项
597
         openSpec(item, type, user) {
602
         openSpec(item, type, user) {
598
             const self = this;
603
             const self = this;
@@ -724,8 +729,7 @@ export default {
724
             this.goodsList = [...this.goodsList];
729
             this.goodsList = [...this.goodsList];
725
         },
730
         },
726
 
731
 
727
-        cartChange() {
728
-        },
732
+        cartChange() {},
729
 
733
 
730
         modalCartChange() {
734
         modalCartChange() {
731
             this.$refs.shopCart.refresh();
735
             this.$refs.shopCart.refresh();

+ 64 - 59
src/pages/goods/detail.vue

@@ -43,10 +43,7 @@
43
                                 goods.priceInfo.nowPrice / 100 || "0.00"
43
                                 goods.priceInfo.nowPrice / 100 || "0.00"
44
                             }}</span>
44
                             }}</span>
45
                         </div>
45
                         </div>
46
-                        <div
47
-                            class="price__original"
48
-                            v-if="ifShowOldPrice"
49
-                        >
46
+                        <div class="price__original" v-if="ifShowOldPrice">
50
                             {{
47
                             {{
51
                                 "¥" + (goods.priceInfo.oldPrice / 100 || "0.00")
48
                                 "¥" + (goods.priceInfo.oldPrice / 100 || "0.00")
52
                             }}
49
                             }}
@@ -291,23 +288,23 @@
291
                     </li>
288
                     </li>
292
                 </ul>
289
                 </ul>
293
             </div>
290
             </div>
294
-            
291
+
295
             <div class="explain">
292
             <div class="explain">
296
                 <ul class="explain-list">
293
                 <ul class="explain-list">
297
                     <li class="item">
294
                     <li class="item">
298
-                        <div class="ex-des bold">
299
-                            划线价格
300
-                        </div>
295
+                        <div class="ex-des bold">划线价格</div>
301
                         <div class="ex-des">
296
                         <div class="ex-des">
302
-                            商品的专柜价、吊牌价、正品零售价、厂商指导价或该商品的曾经展示过的销售价等,<span class="bold">并非原价</span>,仅供参考。
297
+                            商品的专柜价、吊牌价、正品零售价、厂商指导价或该商品的曾经展示过的销售价等,<span
298
+                                class="bold"
299
+                                >并非原价</span
300
+                            >,仅供参考。
303
                         </div>
301
                         </div>
304
                     </li>
302
                     </li>
305
                     <li class="item">
303
                     <li class="item">
306
-                        <div class="ex-des bold">
307
-                            未划线价格
308
-                        </div>
304
+                        <div class="ex-des bold">未划线价格</div>
309
                         <div class="ex-des">
305
                         <div class="ex-des">
310
-                            商品的<span class="bold">实时标价</span>,不因标书的差异改变性质,集体成交价格根据商品参加活动,或会员使用优惠券、积分等发生变化,最终以订单结算页价格为准。
306
+                            商品的<span class="bold">实时标价</span
307
+                            >,不因标书的差异改变性质,集体成交价格根据商品参加活动,或会员使用优惠券、积分等发生变化,最终以订单结算页价格为准。
311
                         </div>
308
                         </div>
312
                     </li>
309
                     </li>
313
                     <li class="item">
310
                     <li class="item">
@@ -316,13 +313,10 @@
316
                         </div>
313
                         </div>
317
                     </li>
314
                     </li>
318
                     <li class="item">
315
                     <li class="item">
319
-                        <div class="ex-des">
320
-                            此说明仅当价格出现比较时有效。
321
-                        </div>
316
+                        <div class="ex-des">此说明仅当价格出现比较时有效。</div>
322
                     </li>
317
                     </li>
323
                 </ul>
318
                 </ul>
324
             </div>
319
             </div>
325
-
326
         </scroll-view>
320
         </scroll-view>
327
         <img
321
         <img
328
             class="live"
322
             class="live"
@@ -519,7 +513,7 @@ export default {
519
             ...self.$mp.query,
513
             ...self.$mp.query,
520
             // storeId: self.goods.storeInfo.storeId,
514
             // storeId: self.goods.storeInfo.storeId,
521
             shopId: this.activeShop.id,
515
             shopId: this.activeShop.id,
522
-            uid:this.user.user.id
516
+            uid: this.user.user.id,
523
         };
517
         };
524
         if (this.activeShop.store) {
518
         if (this.activeShop.store) {
525
             obj.storeId = this.activeShop.store.id;
519
             obj.storeId = this.activeShop.store.id;
@@ -534,7 +528,8 @@ export default {
534
         return {
528
         return {
535
             title: title,
529
             title: title,
536
             path: self.router.getPath(self.$mp.page.route, obj),
530
             path: self.router.getPath(self.$mp.page.route, obj),
537
-            imageUrl: self.canvasforwardPath || self.goods.tradeSwiper.mainImage,
531
+            imageUrl:
532
+                self.canvasforwardPath || self.goods.tradeSwiper.mainImage,
538
         };
533
         };
539
     },
534
     },
540
 
535
 
@@ -719,7 +714,10 @@ export default {
719
                                 })
714
                                 })
720
                                 .then((modal) => {
715
                                 .then((modal) => {
721
                                     if (modal.confirm) {
716
                                     if (modal.confirm) {
722
-                                        self.router.push("/pages/index/select");
717
+                                        self.router.push({
718
+                                            path: "/pages/index/index",
719
+                                            isTabBer: true,
720
+                                        });
723
                                     }
721
                                     }
724
                                 });
722
                                 });
725
                         }
723
                         }
@@ -759,9 +757,10 @@ export default {
759
                                     })
757
                                     })
760
                                     .then((modal) => {
758
                                     .then((modal) => {
761
                                         if (modal.confirm) {
759
                                         if (modal.confirm) {
762
-                                            self.router.push(
763
-                                                "/pages/index/select"
764
-                                            );
760
+                                            self.router.push({
761
+                                                path: "/pages/index/index",
762
+                                                isTabBer: true,
763
+                                            });
765
                                         }
764
                                         }
766
                                     });
765
                                     });
767
                             }
766
                             }
@@ -1026,7 +1025,7 @@ export default {
1026
                 });
1025
                 });
1027
             });
1026
             });
1028
         },
1027
         },
1029
-        
1028
+
1030
         // 创建分享图
1029
         // 创建分享图
1031
         creationShare2() {
1030
         creationShare2() {
1032
             const self = this;
1031
             const self = this;
@@ -1093,7 +1092,7 @@ export default {
1093
                         ctx.stroke();
1092
                         ctx.stroke();
1094
 
1093
 
1095
                         // 价格2
1094
                         // 价格2
1096
-                        if(self.goods.priceInfo.oldPrice){
1095
+                        if (self.goods.priceInfo.oldPrice) {
1097
                             let tagPrice = self.goods.priceInfo.oldPrice / 100;
1096
                             let tagPrice = self.goods.priceInfo.oldPrice / 100;
1098
                             ctx.setFontSize(28);
1097
                             ctx.setFontSize(28);
1099
                             ctx.setFillStyle("#999");
1098
                             ctx.setFillStyle("#999");
@@ -1389,13 +1388,13 @@ export default {
1389
         },
1388
         },
1390
 
1389
 
1391
         kefuTel() {
1390
         kefuTel() {
1392
-            console.log(this.activeShop.managerTelephone)
1391
+            console.log(this.activeShop.managerTelephone);
1393
             if (this.activeShop.managerTelephone) {
1392
             if (this.activeShop.managerTelephone) {
1394
                 uni.makePhoneCall({
1393
                 uni.makePhoneCall({
1395
                     phoneNumber: this.activeShop.managerTelephone,
1394
                     phoneNumber: this.activeShop.managerTelephone,
1396
                 });
1395
                 });
1397
-            }else{
1398
-                this.fn.showToast('当前店铺未设置客服手机号');
1396
+            } else {
1397
+                this.fn.showToast("当前店铺未设置客服手机号");
1399
             }
1398
             }
1400
         },
1399
         },
1401
     },
1400
     },
@@ -1416,12 +1415,18 @@ export default {
1416
         distribution() {
1415
         distribution() {
1417
             return this.$store.state.common.distribution;
1416
             return this.$store.state.common.distribution;
1418
         },
1417
         },
1419
-        ifShowOldPrice(){
1420
-            if(this.goods){
1421
-                if(this.goods.priceInfo.oldPrice && this.goods.priceInfo.oldPrice< this.goods.priceInfo.nowPrice && this.goods.priceInfo.oldPrice!== this.goods.priceInfo.nowPrice){
1418
+        ifShowOldPrice() {
1419
+            if (this.goods) {
1420
+                if (
1421
+                    this.goods.priceInfo.oldPrice &&
1422
+                    this.goods.priceInfo.oldPrice <
1423
+                        this.goods.priceInfo.nowPrice &&
1424
+                    this.goods.priceInfo.oldPrice !==
1425
+                        this.goods.priceInfo.nowPrice
1426
+                ) {
1422
                     return true;
1427
                     return true;
1423
                 }
1428
                 }
1424
-            }   
1429
+            }
1425
             return false;
1430
             return false;
1426
         },
1431
         },
1427
         sepcTextLsit() {
1432
         sepcTextLsit() {
@@ -2098,35 +2103,35 @@ page {
2098
     top: -999px;
2103
     top: -999px;
2099
     z-index: -1;
2104
     z-index: -1;
2100
 }
2105
 }
2101
-.explain{
2106
+.explain {
2102
     padding: px(60) px(40);
2107
     padding: px(60) px(40);
2103
     background-color: #fff;
2108
     background-color: #fff;
2104
-   .item{
2105
-       margin-bottom: px(30);
2106
-       line-height: 1.4;
2107
-       font-size: px(38);
2108
-       color: #666;
2109
-   } 
2110
-   .ex-des:first-child{
2111
-       position: relative;
2112
-       &::after{
2113
-           content: "";
2114
-           display: block;
2115
-           width: px(14);
2116
-           height: px(14);
2117
-           border-radius: 50%;
2118
-           position: absolute;
2119
-           top: px(23);
2120
-           left: px(-20);
2121
-           z-index: 10;
2122
-           background-color: rgb(152, 81, 84);
2123
-       }
2124
-   }
2125
-   .ex-des~.ex-des{
2126
-       margin-top: px(10);
2127
-   }
2109
+    .item {
2110
+        margin-bottom: px(30);
2111
+        line-height: 1.4;
2112
+        font-size: px(38);
2113
+        color: #666;
2114
+    }
2115
+    .ex-des:first-child {
2116
+        position: relative;
2117
+        &::after {
2118
+            content: "";
2119
+            display: block;
2120
+            width: px(14);
2121
+            height: px(14);
2122
+            border-radius: 50%;
2123
+            position: absolute;
2124
+            top: px(23);
2125
+            left: px(-20);
2126
+            z-index: 10;
2127
+            background-color: rgb(152, 81, 84);
2128
+        }
2129
+    }
2130
+    .ex-des ~ .ex-des {
2131
+        margin-top: px(10);
2132
+    }
2128
 }
2133
 }
2129
-.bold{
2130
-    font-weight: bold;;
2134
+.bold {
2135
+    font-weight: bold;
2131
 }
2136
 }
2132
 </style>
2137
 </style>

+ 4 - 2
src/pages/goods/index.vue

@@ -193,6 +193,7 @@ export default {
193
                 selfProductCount: "",
193
                 selfProductCount: "",
194
                 youXuanProductCount: "",
194
                 youXuanProductCount: "",
195
             },
195
             },
196
+            shopId:'',
196
         };
197
         };
197
     },
198
     },
198
     filters: {},
199
     filters: {},
@@ -218,11 +219,12 @@ export default {
218
         this.loginAfter = true;
219
         this.loginAfter = true;
219
         // this.getShopData();
220
         // this.getShopData();
220
         if (this.$refs.category) {
221
         if (this.$refs.category) {
221
-            this.$refs.category.refresh();
222
+            this.$refs.category.refresh(this.shopId!==this.activeShop.id);
222
         }
223
         }
223
         if (this.$refs.recommend) {
224
         if (this.$refs.recommend) {
224
-            this.$refs.recommend.refresh();
225
+            this.$refs.recommend.refresh(this.shopId!==this.activeShop.id);
225
         }
226
         }
227
+        this.shopId = this.activeShop.id;
226
         this.initTab();
228
         this.initTab();
227
     },
229
     },
228
 
230
 

+ 14 - 14
src/pages/goods/recommend.vue

@@ -58,8 +58,7 @@
58
                                                         }}款</span
58
                                                         }}款</span
59
                                                     >
59
                                                     >
60
 
60
 
61
-                                                    <span class="date"
62
-                                                        >
61
+                                                    <span class="date">
63
                                                         {{
62
                                                         {{
64
                                                             item.endTime
63
                                                             item.endTime
65
                                                                 | viewDate
64
                                                                 | viewDate
@@ -147,10 +146,10 @@ export default {
147
             type: Boolean,
146
             type: Boolean,
148
             default: false,
147
             default: false,
149
         },
148
         },
150
-        cateId:{
151
-            type:String,
152
-            default:'',
153
-        }
149
+        cateId: {
150
+            type: String,
151
+            default: "",
152
+        },
154
     },
153
     },
155
     // 数据
154
     // 数据
156
     data() {
155
     data() {
@@ -169,15 +168,15 @@ export default {
169
             shopId: "", //店铺id
168
             shopId: "", //店铺id
170
             index: 1,
169
             index: 1,
171
             pageH: "90vh",
170
             pageH: "90vh",
172
-            scrollY:false
171
+            scrollY: false,
173
         };
172
         };
174
     },
173
     },
175
 
174
 
176
     async created() {
175
     async created() {
177
         this.initHeight();
176
         this.initHeight();
178
         this.refresh();
177
         this.refresh();
179
-        
180
-        if(this.cateId){
178
+
179
+        if (this.cateId) {
181
             this.categoryId = this.cateId;
180
             this.categoryId = this.cateId;
182
         }
181
         }
183
     },
182
     },
@@ -190,13 +189,14 @@ export default {
190
 
189
 
191
     // 函数
190
     // 函数
192
     methods: {
191
     methods: {
193
-
194
-        setScrollY(v){
192
+        setScrollY(v) {
195
             this.scrollY = v;
193
             this.scrollY = v;
196
         },
194
         },
197
 
195
 
198
-        refresh() {
199
-            this.categoryId = "all";
196
+        refresh(setShop) {
197
+            if (setShop) {
198
+                this.categoryId = "all";
199
+            }
200
             this.getList();
200
             this.getList();
201
             this.getCategory();
201
             this.getCategory();
202
         },
202
         },
@@ -799,7 +799,7 @@ export default {
799
             width: 100%;
799
             width: 100%;
800
             /deep/ img {
800
             /deep/ img {
801
                 width: 100%;
801
                 width: 100%;
802
-                height: px(150); 
802
+                height: px(150);
803
             }
803
             }
804
         }
804
         }
805
         .good-name {
805
         .good-name {

+ 26 - 6
src/pages/pay/order-share.vue

@@ -94,7 +94,9 @@
94
                 </li>
94
                 </li>
95
             </ul>
95
             </ul>
96
             <div class="more-loading" v-if="moreLoading">加载中...</div>
96
             <div class="more-loading" v-if="moreLoading">加载中...</div>
97
-            <div class="more-loading" v-else-if="!isHaveMore">没有更多数据了</div>
97
+            <div class="more-loading" v-else-if="!isHaveMore">
98
+                没有更多数据了
99
+            </div>
98
         </div>
100
         </div>
99
         <div class="navigation">
101
         <div class="navigation">
100
             <ul class="navigation__list">
102
             <ul class="navigation__list">
@@ -129,7 +131,16 @@
129
                     总价:<span class="symbol">¥</span
131
                     总价:<span class="symbol">¥</span
130
                     ><span class="num">{{ cartInfo.amount / 100 }}</span>
132
                     ><span class="num">{{ cartInfo.amount / 100 }}</span>
131
                 </div>
133
                 </div>
132
-                <button class="button" @click="submit">
134
+                <button class="button" v-if="user.login" @click="submit">
135
+                    <div class="navigation__btn">去结算</div>
136
+                </button>
137
+                <button
138
+                    class="button"
139
+                    v-if="!user.login"
140
+                    open-type="getUserInfo"
141
+                    lang="zh_CN"
142
+                    @getuserinfo="submit"
143
+                >
133
                     <div class="navigation__btn">去结算</div>
144
                     <div class="navigation__btn">去结算</div>
134
                 </button>
145
                 </button>
135
             </div>
146
             </div>
@@ -199,7 +210,6 @@ export default {
199
                 .get("/Product/GetHHSGProductList", {
210
                 .get("/Product/GetHHSGProductList", {
200
                     pageIndex: self.page,
211
                     pageIndex: self.page,
201
                     pageSize: 20,
212
                     pageSize: 20,
202
-                    
203
                 })
213
                 })
204
                 .then((res) => {
214
                 .then((res) => {
205
                     uni.hideLoading();
215
                     uni.hideLoading();
@@ -293,7 +303,6 @@ export default {
293
                 .get("/Product/GetHHSGProductList", {
303
                 .get("/Product/GetHHSGProductList", {
294
                     pageIndex: self.page,
304
                     pageIndex: self.page,
295
                     pageSize: 20,
305
                     pageSize: 20,
296
-                    
297
                 })
306
                 })
298
                 .then((res) => {
307
                 .then((res) => {
299
                     this.moreLoading = false;
308
                     this.moreLoading = false;
@@ -316,12 +325,23 @@ export default {
316
             });
325
             });
317
         },
326
         },
318
 
327
 
319
-        submit() {
328
+        submit(userInfo) {
329
+            if (userInfo) {
330
+                this.api
331
+                    .post("/User/UpdateUserWechatInfo", userInfo)
332
+                    .then(() => {
333
+                        self.$store.commit("user/update", {
334
+                            login: true,
335
+                            userInfo: userInfo,
336
+                        });
337
+                    });
338
+            }
339
+
320
             this.router.push({
340
             this.router.push({
321
                 path: "/pages/order/affirm",
341
                 path: "/pages/order/affirm",
322
                 query: {
342
                 query: {
323
                     ids: this.cartInfo.orderItemIds.join(","),
343
                     ids: this.cartInfo.orderItemIds.join(","),
324
-                    productSource: 1
344
+                    productSource: 1,
325
                 },
345
                 },
326
             });
346
             });
327
         },
347
         },

+ 22 - 2
src/pages/pay/order-share2.vue

@@ -129,7 +129,16 @@
129
                     总价:<span class="symbol">¥</span
129
                     总价:<span class="symbol">¥</span
130
                     ><span class="num">{{ cartInfo.amount / 100 }}</span>
130
                     ><span class="num">{{ cartInfo.amount / 100 }}</span>
131
                 </div>
131
                 </div>
132
-                <button class="button" @click="submit">
132
+                <button class="button" v-if="user.login" @click="submit">
133
+                    <div class="navigation__btn">去结算</div>
134
+                </button>
135
+                <button
136
+                    class="button"
137
+                    v-if="!user.login"
138
+                    open-type="getUserInfo"
139
+                    lang="zh_CN"
140
+                    @getuserinfo="submit"
141
+                >
133
                     <div class="navigation__btn">去结算</div>
142
                     <div class="navigation__btn">去结算</div>
134
                 </button>
143
                 </button>
135
             </div>
144
             </div>
@@ -314,7 +323,18 @@ export default {
314
             });
323
             });
315
         },
324
         },
316
 
325
 
317
-        submit() {
326
+        submit(userInfo) {
327
+            if (userInfo) {
328
+                this.api
329
+                    .post("/User/UpdateUserWechatInfo", userInfo)
330
+                    .then(() => {
331
+                        self.$store.commit("user/update", {
332
+                            login: true,
333
+                            userInfo: userInfo,
334
+                        });
335
+                    });
336
+            }
337
+
318
             this.router.push({
338
             this.router.push({
319
                 path: "/pages/order/affirm",
339
                 path: "/pages/order/affirm",
320
                 query: {
340
                 query: {

+ 2 - 1
src/pages/pay/result.vue

@@ -221,7 +221,8 @@ export default {
221
         if(this.productSource == 0){
221
         if(this.productSource == 0){
222
             url = '/pages/pay/order-share2';
222
             url = '/pages/pay/order-share2';
223
         }
223
         }
224
-        url +=`?orderId=${this.orderId}&shopId=${this.activeShop.id}&uid=${this.user.id}`;
224
+        console.log(this.user);
225
+        url +=`?orderId=${this.orderId}&shopId=${this.activeShop.id}&uid=${this.user.user.id}`;
225
 
226
 
226
         if(this.activeShop){
227
         if(this.activeShop){
227
             url+=`&shopId=${this.activeShop.id}`;
228
             url+=`&shopId=${this.activeShop.id}`;

+ 20 - 18
src/pages/recommend/detail.vue

@@ -375,7 +375,7 @@
375
             </ul>
375
             </ul>
376
             <div class="navigation__right">
376
             <div class="navigation__right">
377
                 <button
377
                 <button
378
-                    v-if="user.login && goods.totalInventory > 0"
378
+                    v-if="user.login"
379
                     class="button"
379
                     class="button"
380
                     @click="openSpec('cart', $event)"
380
                     @click="openSpec('cart', $event)"
381
                 >
381
                 >
@@ -384,14 +384,14 @@
384
                     </div>
384
                     </div>
385
                 </button>
385
                 </button>
386
                 <button
386
                 <button
387
-                    v-if="user.login && goods.totalInventory > 0"
387
+                    v-if="user.login"
388
                     class="button"
388
                     class="button"
389
                     @click="openSpec('buy', $event)"
389
                     @click="openSpec('buy', $event)"
390
                 >
390
                 >
391
                     <div class="navigation__btn">立即购买</div>
391
                     <div class="navigation__btn">立即购买</div>
392
                 </button>
392
                 </button>
393
                 <button
393
                 <button
394
-                    v-if="!user.login && goods.totalInventory > 0"
394
+                    v-if="!user.login"
395
                     class="button"
395
                     class="button"
396
                     open-type="getUserInfo"
396
                     open-type="getUserInfo"
397
                     lang="zh_CN"
397
                     lang="zh_CN"
@@ -402,7 +402,7 @@
402
                     </div>
402
                     </div>
403
                 </button>
403
                 </button>
404
                 <button
404
                 <button
405
-                    v-if="!user.login && goods.totalInventory > 0"
405
+                    v-if="!user.login"
406
                     class="button"
406
                     class="button"
407
                     open-type="getUserInfo"
407
                     open-type="getUserInfo"
408
                     lang="zh_CN"
408
                     lang="zh_CN"
@@ -620,7 +620,7 @@ export default {
620
             const self = this;
620
             const self = this;
621
             let userInfo = user.detail.userInfo;
621
             let userInfo = user.detail.userInfo;
622
 
622
 
623
-            if (self.user.login) {
623
+            if (!self.user.login) {
624
                 self.$refs.spec.open(type, (res) => {
624
                 self.$refs.spec.open(type, (res) => {
625
                     if (type === "cart") {
625
                     if (type === "cart") {
626
                         self.getCartNumber();
626
                         self.getCartNumber();
@@ -643,7 +643,10 @@ export default {
643
                                 })
643
                                 })
644
                                 .then((modal) => {
644
                                 .then((modal) => {
645
                                     if (modal.confirm) {
645
                                     if (modal.confirm) {
646
-                                        self.router.push("/pages/index/select");
646
+                                        self.router.push({
647
+                                            path: "/pages/index/index",
648
+                                            isTabBer: true,
649
+                                        });
647
                                     }
650
                                     }
648
                                 });
651
                                 });
649
                         }
652
                         }
@@ -651,16 +654,14 @@ export default {
651
                 });
654
                 });
652
             } else {
655
             } else {
653
                 if (userInfo) {
656
                 if (userInfo) {
654
-                    if (!self.user.login) {
655
-                        self.api
656
-                            .post("/User/UpdateUserWechatInfo", userInfo)
657
-                            .then(() => {
658
-                                self.$store.commit("user/update", {
659
-                                    login: true,
660
-                                    userInfo: userInfo,
661
-                                });
657
+                    self.api
658
+                        .post("/User/UpdateUserWechatInfo", userInfo)
659
+                        .then(() => {
660
+                            self.$store.commit("user/update", {
661
+                                login: true,
662
+                                userInfo: userInfo,
662
                             });
663
                             });
663
-                    }
664
+                        });
664
 
665
 
665
                     self.$refs.spec.open(type, (res) => {
666
                     self.$refs.spec.open(type, (res) => {
666
                         if (type === "cart") {
667
                         if (type === "cart") {
@@ -684,9 +685,10 @@ export default {
684
                                     })
685
                                     })
685
                                     .then((modal) => {
686
                                     .then((modal) => {
686
                                         if (modal.confirm) {
687
                                         if (modal.confirm) {
687
-                                            self.router.push(
688
-                                                "/pages/index/select"
689
-                                            );
688
+                                            self.router.push({
689
+                                                path: "/pages/index/index",
690
+                                                isTabBer: true,
691
+                                            });
690
                                         }
692
                                         }
691
                                     });
693
                                     });
692
                             }
694
                             }

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

@@ -279,7 +279,7 @@
279
         </div>
279
         </div>
280
 
280
 
281
         <div class="web-support">
281
         <div class="web-support">
282
-            <p class="text">0.0.983</p>
282
+            <p class="text">0.0.984</p>
283
             <!-- <div class="num" @click="makeCall">400-629-6782</div> -->
283
             <!-- <div class="num" @click="makeCall">400-629-6782</div> -->
284
         </div>
284
         </div>
285
     </div>
285
     </div>