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

+ 5 - 8
src/components/address-select/index.vue

@@ -18,7 +18,7 @@
18 18
                     <div class="c-list__content">
19 19
                         <img
20 20
                             class="c-list__icon"
21
-                            src="/static/share/icon_3.jpg"
21
+                            src="/static/share/add.png"
22 22
                             alt
23 23
                         />
24 24
                         <div class="c-list__text">添加地址</div>
@@ -57,9 +57,6 @@ export default {
57 57
             const self = this;
58 58
 
59 59
             self.show = true;
60
-            // self.price = price
61
-            // self.distribution = distribution
62
-            // self.vip = vip
63 60
             self.callback = callback;
64 61
         },
65 62
 
@@ -69,15 +66,15 @@ export default {
69 66
 
70 67
             self.show = false;
71 68
 
72
-            if (self.fn.getType(self.callback) === "function") {
73
-                self.callback();
74
-            }
75 69
         },
76 70
 
77 71
 
78 72
         // 点击
79 73
         tabClick(type){
80
-            self.$emit("share", type);
74
+            this.$emit("share", type);
75
+            if(this.callback){
76
+                this.callback(type);
77
+            }
81 78
         }
82 79
     },
83 80
 

+ 20 - 2
src/pages/address/form.vue

@@ -82,6 +82,7 @@ export default {
82 82
                 longitude: "", // 经度
83 83
                 zipCode: "",
84 84
             },
85
+            isOrder: false,
85 86
         };
86 87
     },
87 88
 
@@ -114,6 +115,12 @@ export default {
114 115
     },
115 116
     onShow() {
116 117
         let self = this;
118
+
119
+        if (this.$mp.query.isOrder == "1") {
120
+            this.isOrder = true;
121
+        } else {
122
+            this.isOrder = false;
123
+        }
117 124
     },
118 125
 
119 126
     // 函数
@@ -123,7 +130,7 @@ export default {
123 130
             // 判断定位权限
124 131
             uni.getSetting({
125 132
                 success: function (res) {
126
-                    console.log(res,'1234')
133
+                    console.log(res, "1234");
127 134
                     if (res.authSetting["scope.userLocation"] === false) {
128 135
                         self.fn
129 136
                             .showModal({
@@ -179,7 +186,6 @@ export default {
179 186
         },
180 187
 
181 188
         submit() {
182
-            console.log(this.form.isDefault);
183 189
             if (!this.form.regionInfo) {
184 190
                 return this.fn.showToast("请选择地址");
185 191
             }
@@ -206,6 +212,12 @@ export default {
206 212
                 this.api.post("/Address/Edit", data).then((res) => {
207 213
                     if (res.success) {
208 214
                         this.fn.showToast("保存成功");
215
+                        if (this.isOrder) {
216
+                            data.id = res.data;
217
+                            this.$store.commit("common/update", {
218
+                                addressData: data,
219
+                            });
220
+                        }
209 221
                         this.router.back();
210 222
                     } else {
211 223
                         this.fn.showModal({
@@ -220,6 +232,12 @@ export default {
220 232
                 this.api.post("/Address/Add", this.form).then((res) => {
221 233
                     if (res.success) {
222 234
                         this.fn.showToast("保存成功");
235
+                        if (this.isOrder) {
236
+                            this.form.id = res.data;
237
+                            this.$store.commit("common/update", {
238
+                                addressData: this.form,
239
+                            });
240
+                        }
223 241
                         this.router.back();
224 242
                     } else {
225 243
                         this.fn.showModal({

+ 11 - 13
src/pages/address/index.vue

@@ -10,7 +10,7 @@
10 10
                             <!-- <span class="tag" v-if="item.isDefault">默认</span> -->
11 11
                         </div>
12 12
                         <div class="address__text" v-if="item.regionInfo">
13
-                            {{item.regionInfo}} {{ item.address }}
13
+                            {{ item.regionInfo }} {{ item.address }}
14 14
                         </div>
15 15
                         <div class="address__text" v-else>
16 16
                             {{ item.province }} {{ item.city }}
@@ -41,18 +41,17 @@ export default {
41 41
         return {
42 42
             addressList: null,
43 43
             isReq: false,
44
-            isOrder:false, // 是否订单进入
44
+            isOrder: false, // 是否订单进入
45 45
         };
46 46
     },
47 47
 
48
-    onLoad(opts){
49
-        console.log(this.$mp.query.isOrder)
50
-        if(this.$mp.query.isOrder =='1'){
51
-        this.isOrder =true;
52
-        }else{
53
-            this.isOrder =false;
48
+    onLoad(opts) {
49
+        console.log(this.$mp.query.isOrder);
50
+        if (this.$mp.query.isOrder == "1") {
51
+            this.isOrder = true;
52
+        } else {
53
+            this.isOrder = false;
54 54
         }
55
-
56 55
     },
57 56
 
58 57
     async onShow() {
@@ -79,9 +78,9 @@ export default {
79 78
             this.$store.commit("common/update", {
80 79
                 addressData: val,
81 80
             });
82
-            if(this.isOrder){
81
+            if (this.isOrder) {
83 82
                 this.router.back();
84
-            }else{
83
+            } else {
85 84
                 this.router.push({
86 85
                     path: "/pages/address/form",
87 86
                     query: {
@@ -100,7 +99,6 @@ export default {
100 99
 
101 100
     // 数据计算
102 101
     computed: {
103
-        
104 102
         // 判断主题  1:红色  2:绿色
105 103
         theme() {
106 104
             return this.$store.state.common.theme;
@@ -197,7 +195,7 @@ export default {
197 195
         border: 1px solid #27a34f;
198 196
     }
199 197
 }
200
-.tag{
198
+.tag {
201 199
     font-size: px(30);
202 200
     padding: 0 px(10);
203 201
     line-height: px(44);

+ 31 - 1
src/pages/goods/list2.vue

@@ -414,6 +414,7 @@ export default {
414 414
             shopGoodAsc: -1,
415 415
             shopGoodSort: -1,
416 416
             shopGoodsList: [],
417
+            cartList:[]
417 418
         };
418 419
     },
419 420
 
@@ -465,6 +466,7 @@ export default {
465 466
             self.getActivityList();
466 467
         } else {
467 468
             self.getShopGoodsList();
469
+            this.getCartLsit();
468 470
         }
469 471
     },
470 472
 
@@ -478,6 +480,7 @@ export default {
478 480
                 this.getActivityList();
479 481
             } else {
480 482
                 this.getShopGoodsList();
483
+                this.getCartLsit();
481 484
             }
482 485
         },
483 486
 
@@ -489,6 +492,7 @@ export default {
489 492
                 this.getActivityList();
490 493
             } else {
491 494
                 this.getShopGoodsList();
495
+                this.getCartLsit();
492 496
             }
493 497
         },
494 498
 
@@ -500,6 +504,7 @@ export default {
500 504
                 self.getMoreActivity();
501 505
             } else {
502 506
                 this.getShopMoreGoods();
507
+                this.getCartLsit();
503 508
             }
504 509
         },
505 510
         // 设置排序
@@ -872,10 +877,34 @@ export default {
872 877
 
873 878
                     self.shopGoodsList = res.data.data;
874 879
                     self.loading = true;
875
-                    this.setGoodsList();
880
+                    self.setGoodsList();
876 881
                     uni.hideLoading();
877 882
                 });
878 883
         },
884
+        
885
+        setGoodsList() {
886
+            // 删除全部
887
+            for (let item of this.goodsList) {
888
+                item.cart = null;
889
+            }
890
+            // 重新赋值
891
+            for (let item of this.shopGoodsList) {
892
+                for (let cart of this.cartList) {
893
+                    if (cart.productId === item.id) {
894
+                        if(item.skus.length === 0){
895
+                            item.cart = cart;
896
+                        }else{
897
+                            if(item.cart){
898
+                                item.cart.push(cart);
899
+                            }else{
900
+                                item.cart = [cart];
901
+                            }
902
+                        }
903
+                    }
904
+                }
905
+            }
906
+            this.goodsList = [...this.goodsList];
907
+        },
879 908
 
880 909
         // 获取更多商品
881 910
         getShopMoreGoods() {
@@ -897,6 +926,7 @@ export default {
897 926
 
898 927
                     self.shopGoodsList = self.shopGoodsList.concat(res.data.data);
899 928
                     this.setShopGoodsList();
929
+                    this.setGoodsList();
900 930
                 });
901 931
         },
902 932
     },

+ 75 - 16
src/pages/order/affirm.vue

@@ -135,7 +135,8 @@
135 135
                     <i class="iconfont iconarrow address__arrows"></i>
136 136
                 </div>
137 137
             </div>
138
-            <div class="address-null" v-else @click="setAddress">
138
+            <!-- v-else -->
139
+            <div class="address-null" v-else @click="openAddress">
139 140
                 <div class="address-null__title">请填写收货地址</div>
140 141
                 <i class="iconfont iconarrow address-null__arrows"></i>
141 142
             </div>
@@ -148,7 +149,7 @@
148 149
                     placeholder="详细地址,例1层101室"
149 150
                 />
150 151
             </div>
151
-            <div class="my-address" v-if="address && productSource!='1'">
152
+            <div class="my-address" v-if="address && productSource != '1'">
152 153
                 <span>收货人:</span>
153 154
                 <input
154 155
                     class="my-address__input"
@@ -157,7 +158,7 @@
157 158
                     placeholder="收货人"
158 159
                 />
159 160
             </div>
160
-            <div class="my-address" v-if="address && productSource!='1'">
161
+            <div class="my-address" v-if="address && productSource != '1'">
161 162
                 <span>手机号:</span>
162 163
                 <input
163 164
                     class="my-address__input"
@@ -435,7 +436,7 @@ import AddressSelect from "../../components/address-select/index";
435 436
 
436 437
 export default {
437 438
     name: "",
438
-    components: { FInputNumber, MyImage, OCoupon,AddressSelect },
439
+    components: { FInputNumber, MyImage, OCoupon, AddressSelect },
439 440
     // 数据
440 441
     data() {
441 442
         return {
@@ -502,6 +503,9 @@ export default {
502 503
             this.$store.commit("common/update", {
503 504
                 addressData: null,
504 505
             });
506
+            if(this.$refs.addressSelect){
507
+                this.$refs.addressSelect.close();
508
+            }
505 509
         }
506 510
     },
507 511
 
@@ -630,7 +634,7 @@ export default {
630 634
 
631 635
         // 获取地址是否超出距离
632 636
         calDistance() {
633
-            if (!this.address || this.productSource=='1') {
637
+            if (!this.address || this.productSource == "1") {
634 638
                 return;
635 639
             }
636 640
             if (!this.address.longitude || !this.address.latitude) {
@@ -987,9 +991,9 @@ export default {
987 991
                 deliveryEndTime: this.deliveryTime()[1],
988 992
                 productSource: Number(this.productSource), // 0-商家商品1-优选商品
989 993
             };
990
-            if(this.productSource==='1'){
994
+            if (this.productSource === "1") {
991 995
                 sendData.deliveryMethod = 0;
992
-            }else{
996
+            } else {
993 997
                 sendData.deliveryMethod = this.curTab;
994 998
             }
995 999
             // 配送
@@ -1078,6 +1082,70 @@ export default {
1078 1082
                 return this.curTime.date;
1079 1083
             }
1080 1084
         },
1085
+
1086
+        // 打开地址
1087
+        openAddress() {
1088
+            const self = this;
1089
+            console.log(self.$refs.addressSelect);
1090
+            self.$refs.addressSelect.open((val) => {
1091
+                if (val === "add") {
1092
+                    const self = this;
1093
+                    this.router.push({
1094
+                        path: "/pages/address/form",
1095
+                        query: {
1096
+                            isOrder: "1",
1097
+                        },
1098
+                    });
1099
+                } else {
1100
+                    uni.chooseAddress({
1101
+                        success(addressRes) {
1102
+                            if (addressRes.errMsg === "chooseAddress:ok") {
1103
+                                let address = {
1104
+                                    regionInfo:
1105
+                                        addressRes.provinceName +
1106
+                                        addressRes.cityName +
1107
+                                        addressRes.countyName,
1108
+                                    province: addressRes.provinceName,
1109
+                                    city: addressRes.cityName,
1110
+                                    county: addressRes.countyName,
1111
+                                    address: addressRes.detailInfo,
1112
+                                    name: addressRes.userName,
1113
+                                    // mobile: "17343041879",
1114
+                                    mobile: addressRes.telNumber,
1115
+                                };
1116
+                                self.api
1117
+                                    .post("/Address/Add", address)
1118
+                                    .then((res) => {
1119
+                                        if (res.success) {
1120
+                                            // self.fn.showToast("保存成功");
1121
+                                            address.id = res.data;
1122
+                                            self.address = {
1123
+                                                ...address,
1124
+                                                provinceName: address.province,
1125
+                                                cityName: address.city,
1126
+                                                countyName: address.county,
1127
+                                                detailInfo: address.address,
1128
+                                                userName: address.name,
1129
+                                                telNumber: address.mobile,
1130
+                                                regionInfo: address.regionInfo,
1131
+                                            };
1132
+                                            self.$refs.addressSelect.close();
1133
+                                        } else {
1134
+                                            self.fn.showModal({
1135
+                                                title: "保存失败",
1136
+                                                content: res.message,
1137
+                                                showCancel: false,
1138
+                                            });
1139
+                                        }
1140
+                                    });
1141
+                            } else {
1142
+                                this.fn.showToast("选择地址失败");
1143
+                            }
1144
+                        },
1145
+                    });
1146
+                }
1147
+            });
1148
+        },
1081 1149
     },
1082 1150
 
1083 1151
     // 数据计算
@@ -1343,15 +1411,6 @@ export default {
1343 1411
 
1344 1412
             return sum;
1345 1413
         },
1346
-
1347
-        // 打开地址
1348
-        oprenAddress() {
1349
-            const self = this;
1350
-
1351
-            self.$refs.openAddress.open((val) => {
1352
-                console.log(val);
1353
-            });
1354
-        },
1355 1414
     },
1356 1415
 
1357 1416
     // 数据监听

+ 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.89</p>
282
+            <p class="text">0.0.9</p>
283 283
             <!-- <div class="num" @click="makeCall">400-629-6782</div> -->
284 284
         </div>
285 285
     </div>

BIN
src/static/share/add.png