cr před 3 roky
rodič
revize
53cd94b4a3

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

@@ -1,5 +1,5 @@
1 1
 <template>
2
-    <div class="page-main  page_red" :style="{ height: pageH }">
2
+    <div class="page-main page_red" :style="{ height: pageH }">
3 3
         <div class="page__content">
4 4
             <div class="page__box">
5 5
                 <scroll-view class="category" :scroll-y="scrollY">
@@ -295,7 +295,11 @@
295 295
             :spec="'cart'"
296 296
             @change="modalCartChange()"
297 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 303
     </div>
300 304
 </template>
301 305
 
@@ -307,16 +311,16 @@ import GSpecModal from "./specModal";
307 311
 import config from "../../common/js/config";
308 312
 export default {
309 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 326
     data() {
@@ -338,14 +342,14 @@ export default {
338 342
             shopId: "", //店铺id
339 343
             index: 1,
340 344
             pageH: "90vh",
341
-            scrollY:false
345
+            scrollY: false,
342 346
         };
343 347
     },
344 348
 
345 349
     async created() {
346 350
         this.initHeight();
347 351
         this.refresh();
348
-        if(this.cateId){
352
+        if (this.cateId) {
349 353
             this.categoryId = this.cateId;
350 354
         }
351 355
     },
@@ -358,16 +362,18 @@ export default {
358 362
 
359 363
     // 函数
360 364
     methods: {
361
-        setScrollY(v){
365
+        setScrollY(v) {
362 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 374
             this.getCategory();
369 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 377
                 this.$refs.shopCart.refresh();
372 378
             }
373 379
             // this.getGoodsList();
@@ -384,7 +390,7 @@ export default {
384 390
                         statusBarHeight +
385 391
                         menuButtonObject.height +
386 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 589
                             .then((res) => {
584 590
                                 if (res.confirm) {
585 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 602
         openSpec(item, type, user) {
598 603
             const self = this;
@@ -724,8 +729,7 @@ export default {
724 729
             this.goodsList = [...this.goodsList];
725 730
         },
726 731
 
727
-        cartChange() {
728
-        },
732
+        cartChange() {},
729 733
 
730 734
         modalCartChange() {
731 735
             this.$refs.shopCart.refresh();

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

@@ -43,10 +43,7 @@
43 43
                                 goods.priceInfo.nowPrice / 100 || "0.00"
44 44
                             }}</span>
45 45
                         </div>
46
-                        <div
47
-                            class="price__original"
48
-                            v-if="ifShowOldPrice"
49
-                        >
46
+                        <div class="price__original" v-if="ifShowOldPrice">
50 47
                             {{
51 48
                                 "¥" + (goods.priceInfo.oldPrice / 100 || "0.00")
52 49
                             }}
@@ -291,23 +288,23 @@
291 288
                     </li>
292 289
                 </ul>
293 290
             </div>
294
-            
291
+
295 292
             <div class="explain">
296 293
                 <ul class="explain-list">
297 294
                     <li class="item">
298
-                        <div class="ex-des bold">
299
-                            划线价格
300
-                        </div>
295
+                        <div class="ex-des bold">划线价格</div>
301 296
                         <div class="ex-des">
302
-                            商品的专柜价、吊牌价、正品零售价、厂商指导价或该商品的曾经展示过的销售价等,<span class="bold">并非原价</span>,仅供参考。
297
+                            商品的专柜价、吊牌价、正品零售价、厂商指导价或该商品的曾经展示过的销售价等,<span
298
+                                class="bold"
299
+                                >并非原价</span
300
+                            >,仅供参考。
303 301
                         </div>
304 302
                     </li>
305 303
                     <li class="item">
306
-                        <div class="ex-des bold">
307
-                            未划线价格
308
-                        </div>
304
+                        <div class="ex-des bold">未划线价格</div>
309 305
                         <div class="ex-des">
310
-                            商品的<span class="bold">实时标价</span>,不因标书的差异改变性质,集体成交价格根据商品参加活动,或会员使用优惠券、积分等发生变化,最终以订单结算页价格为准。
306
+                            商品的<span class="bold">实时标价</span
307
+                            >,不因标书的差异改变性质,集体成交价格根据商品参加活动,或会员使用优惠券、积分等发生变化,最终以订单结算页价格为准。
311 308
                         </div>
312 309
                     </li>
313 310
                     <li class="item">
@@ -316,13 +313,10 @@
316 313
                         </div>
317 314
                     </li>
318 315
                     <li class="item">
319
-                        <div class="ex-des">
320
-                            此说明仅当价格出现比较时有效。
321
-                        </div>
316
+                        <div class="ex-des">此说明仅当价格出现比较时有效。</div>
322 317
                     </li>
323 318
                 </ul>
324 319
             </div>
325
-
326 320
         </scroll-view>
327 321
         <img
328 322
             class="live"
@@ -519,7 +513,7 @@ export default {
519 513
             ...self.$mp.query,
520 514
             // storeId: self.goods.storeInfo.storeId,
521 515
             shopId: this.activeShop.id,
522
-            uid:this.user.user.id
516
+            uid: this.user.user.id,
523 517
         };
524 518
         if (this.activeShop.store) {
525 519
             obj.storeId = this.activeShop.store.id;
@@ -534,7 +528,8 @@ export default {
534 528
         return {
535 529
             title: title,
536 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 715
                                 .then((modal) => {
721 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 758
                                     .then((modal) => {
761 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 1030
         creationShare2() {
1032 1031
             const self = this;
@@ -1093,7 +1092,7 @@ export default {
1093 1092
                         ctx.stroke();
1094 1093
 
1095 1094
                         // 价格2
1096
-                        if(self.goods.priceInfo.oldPrice){
1095
+                        if (self.goods.priceInfo.oldPrice) {
1097 1096
                             let tagPrice = self.goods.priceInfo.oldPrice / 100;
1098 1097
                             ctx.setFontSize(28);
1099 1098
                             ctx.setFillStyle("#999");
@@ -1389,13 +1388,13 @@ export default {
1389 1388
         },
1390 1389
 
1391 1390
         kefuTel() {
1392
-            console.log(this.activeShop.managerTelephone)
1391
+            console.log(this.activeShop.managerTelephone);
1393 1392
             if (this.activeShop.managerTelephone) {
1394 1393
                 uni.makePhoneCall({
1395 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 1415
         distribution() {
1417 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 1427
                     return true;
1423 1428
                 }
1424
-            }   
1429
+            }
1425 1430
             return false;
1426 1431
         },
1427 1432
         sepcTextLsit() {
@@ -2098,35 +2103,35 @@ page {
2098 2103
     top: -999px;
2099 2104
     z-index: -1;
2100 2105
 }
2101
-.explain{
2106
+.explain {
2102 2107
     padding: px(60) px(40);
2103 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 2137
 </style>

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

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

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

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

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

@@ -94,7 +94,9 @@
94 94
                 </li>
95 95
             </ul>
96 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 100
         </div>
99 101
         <div class="navigation">
100 102
             <ul class="navigation__list">
@@ -129,7 +131,16 @@
129 131
                     总价:<span class="symbol">¥</span
130 132
                     ><span class="num">{{ cartInfo.amount / 100 }}</span>
131 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 144
                     <div class="navigation__btn">去结算</div>
134 145
                 </button>
135 146
             </div>
@@ -199,7 +210,6 @@ export default {
199 210
                 .get("/Product/GetHHSGProductList", {
200 211
                     pageIndex: self.page,
201 212
                     pageSize: 20,
202
-                    
203 213
                 })
204 214
                 .then((res) => {
205 215
                     uni.hideLoading();
@@ -293,7 +303,6 @@ export default {
293 303
                 .get("/Product/GetHHSGProductList", {
294 304
                     pageIndex: self.page,
295 305
                     pageSize: 20,
296
-                    
297 306
                 })
298 307
                 .then((res) => {
299 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 340
             this.router.push({
321 341
                 path: "/pages/order/affirm",
322 342
                 query: {
323 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 129
                     总价:<span class="symbol">¥</span
130 130
                     ><span class="num">{{ cartInfo.amount / 100 }}</span>
131 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 142
                     <div class="navigation__btn">去结算</div>
134 143
                 </button>
135 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 338
             this.router.push({
319 339
                 path: "/pages/order/affirm",
320 340
                 query: {

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

@@ -221,7 +221,8 @@ export default {
221 221
         if(this.productSource == 0){
222 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 227
         if(this.activeShop){
227 228
             url+=`&shopId=${this.activeShop.id}`;

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

@@ -375,7 +375,7 @@
375 375
             </ul>
376 376
             <div class="navigation__right">
377 377
                 <button
378
-                    v-if="user.login && goods.totalInventory > 0"
378
+                    v-if="user.login"
379 379
                     class="button"
380 380
                     @click="openSpec('cart', $event)"
381 381
                 >
@@ -384,14 +384,14 @@
384 384
                     </div>
385 385
                 </button>
386 386
                 <button
387
-                    v-if="user.login && goods.totalInventory > 0"
387
+                    v-if="user.login"
388 388
                     class="button"
389 389
                     @click="openSpec('buy', $event)"
390 390
                 >
391 391
                     <div class="navigation__btn">立即购买</div>
392 392
                 </button>
393 393
                 <button
394
-                    v-if="!user.login && goods.totalInventory > 0"
394
+                    v-if="!user.login"
395 395
                     class="button"
396 396
                     open-type="getUserInfo"
397 397
                     lang="zh_CN"
@@ -402,7 +402,7 @@
402 402
                     </div>
403 403
                 </button>
404 404
                 <button
405
-                    v-if="!user.login && goods.totalInventory > 0"
405
+                    v-if="!user.login"
406 406
                     class="button"
407 407
                     open-type="getUserInfo"
408 408
                     lang="zh_CN"
@@ -620,7 +620,7 @@ export default {
620 620
             const self = this;
621 621
             let userInfo = user.detail.userInfo;
622 622
 
623
-            if (self.user.login) {
623
+            if (!self.user.login) {
624 624
                 self.$refs.spec.open(type, (res) => {
625 625
                     if (type === "cart") {
626 626
                         self.getCartNumber();
@@ -643,7 +643,10 @@ export default {
643 643
                                 })
644 644
                                 .then((modal) => {
645 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 655
             } else {
653 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 666
                     self.$refs.spec.open(type, (res) => {
666 667
                         if (type === "cart") {
@@ -684,9 +685,10 @@ export default {
684 685
                                     })
685 686
                                     .then((modal) => {
686 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 279
         </div>
280 280
 
281 281
         <div class="web-support">
282
-            <p class="text">0.0.983</p>
282
+            <p class="text">0.0.984</p>
283 283
             <!-- <div class="num" @click="makeCall">400-629-6782</div> -->
284 284
         </div>
285 285
     </div>