瀏覽代碼

修改bug

cr 4 年之前
父節點
當前提交
d4069d0e39

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

@@ -22,6 +22,7 @@ const module = {
22 22
         billData:null,//wallet/detail/ 临时保存
23 23
         welcomeData:null, // assistant/welcome-item 临时保存
24 24
         welcomeItemData:null,// assistant/welcome-item 临时保存
25
+        activityData:null,// youxuan/good 临时保存
25 26
         tabList:[{
26 27
             id: 1,
27 28
             name: "订单",

+ 17 - 11
src/pages/assistant/add-platform.vue

@@ -140,6 +140,7 @@ export default {
140 140
         },
141 141
 
142 142
         commitPid(sendData) {
143
+            let self = this;
143 144
             let pName = "";
144 145
             for (let item of this.list) {
145 146
                 if (item.platform === this.activeValue) {
@@ -150,20 +151,21 @@ export default {
150 151
                 .get("/Group/AddJDPlatform", sendData, { pass: true })
151 152
                 .then((res) => {
152 153
                     if (res.success) {
153
-                        this.fn.showModal({
154
-                            title: "添加平台成功",
155
-                            content: `你已成功添加${''},如果需要在群内关联平台,请在群详情下关联平台,获取点击“一键关联群”,现在一键关联`,
156
-                            confirmText: "一键关联",
157
-                            cancelText: "稍后关联",
158
-                            confirmColor: "#42b983",
159
-                            success: (res2) => {
154
+                        this.fn
155
+                            .showModal({
156
+                                title: "添加平台成功",
157
+                                content: `您已成功添加${pName},点击“一键关联”将您的群和平台关联”,现在一键关联`,
158
+                                confirmText: "一键关联",
159
+                                confirmColor: "#42b983",
160
+                                showCancel: false,
161
+                            })
162
+                            .then((res2) => {
160 163
                                 if (res2.confirm) {
161
-                                    this.enableShopJDPlatform();
164
+                                    self.enableShopJDPlatform();
162 165
                                 } else {
163
-                                    this.router.back();
166
+                                    self.router.back();
164 167
                                 }
165
-                            },
166
-                        });
168
+                            });
167 169
                     } else {
168 170
                         this.fn.showModal({
169 171
                             title: "团长号提交失败",
@@ -175,9 +177,13 @@ export default {
175 177
         },
176 178
 
177 179
         enableShopJDPlatform() {
180
+            uni.showLoading({
181
+                title: "提交中",
182
+            });
178 183
             this.api
179 184
                 .get("/Group/enableShopJDPlatform", {}, { pass: true })
180 185
                 .then((res) => {
186
+                    uni.hideLoading();
181 187
                     if (res.success) {
182 188
                         this.fn.showToast("一键关联成功");
183 189
                         this.router.back();

+ 5 - 1
src/pages/assistant/index.vue

@@ -111,8 +111,12 @@ export default {
111 111
     onLoad() {},
112 112
     async onShow() {
113 113
         this.$refs.tabbar.setIndex(3);
114
-        this.getList();
115 114
         this.checkStatus();
115
+        if (this.tabIndex === 0) {
116
+            this.getList();
117
+        } else {
118
+            this.getPlatformList();
119
+        }
116 120
     },
117 121
 
118 122
     // onPullDownRefresh() {

+ 14 - 7
src/pages/assistant/re-pid.vue

@@ -8,7 +8,11 @@
8 8
                 </div>
9 9
                 <div class="box">
10 10
                     <div class="con">
11
-                        <input type="text" v-model="pid" placeholder="90000*****" />
11
+                        <input
12
+                            type="text"
13
+                            v-model="pid"
14
+                            placeholder="90000*****"
15
+                        />
12 16
                     </div>
13 17
                 </div>
14 18
             </section>
@@ -27,15 +31,14 @@ export default {
27 31
     data() {
28 32
         return {
29 33
             submitLoading: false,
30
-            pid:'',
34
+            pid: "",
31 35
             platformData: {},
32 36
         };
33 37
     },
34 38
 
35 39
     onLoad() {
36 40
         this.platformData = this.$store.state.common.platformData;
37
-        this.pid = this.platformData.pid || '';
38
-        // console.log(this.platformData);
41
+        this.pid = this.platformData.pid || "";
39 42
     },
40 43
 
41 44
     onShow() {},
@@ -67,13 +70,17 @@ export default {
67 70
                     uni.hideLoading();
68 71
                     if (res.success) {
69 72
                         this.fn.showToast("修改成功");
73
+                        let obj = { ...this.platformData };
74
+                        obj.pid = this.pid;
75
+                        this.$store.commit("common/update", {
76
+                            platformData: obj,
77
+                        });
78
+                        console.log(obj)
70 79
                         this.router.back();
71 80
                     } else {
72 81
                         this.fn.showModal({
73 82
                             title: "修改失败",
74
-                            content:
75
-                                "错误信息:" +
76
-                                res.message,
83
+                            content: "错误信息:" + res.message,
77 84
                             showCancel: false,
78 85
                         });
79 86
                     }

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

@@ -77,7 +77,7 @@
77 77
 
78 78
         <!-- <button class="btn" @click="layout">退出登录</button> -->
79 79
 
80
-        <div class="ver">0.5.35</div>
80
+        <div class="ver">0.5.37</div>
81 81
         <wyg-bottom-tab
82 82
             ref="tabbar"
83 83
             :tabIndex="2"

+ 50 - 18
src/pages/youxuan/brand.vue

@@ -80,9 +80,18 @@
80 80
                                                     }}
81 81
                                                 </div>
82 82
                                                 <div class="goods__sale flex">
83
-                                                    <span> {{ item.onlineProductCount }}款 </span>
84
-
85
-                                                    <span> 最多赚:{{item.maxCommission / 100}} </span>
83
+                                                    <span>
84
+                                                        {{
85
+                                                            item.onlineProductCount
86
+                                                        }}款
87
+                                                    </span>
88
+
89
+                                                    <span>
90
+                                                        最多赚:{{
91
+                                                            item.maxCommission /
92
+                                                            100
93
+                                                        }}
94
+                                                    </span>
86 95
                                                 </div>
87 96
                                             </div>
88 97
                                             <!-- <div
@@ -183,6 +192,7 @@ export default {
183 192
             activityPageIndex: 1,
184 193
             activityList: [],
185 194
             isMoreEnd: false,
195
+            otherUrl: "https://bot.ixiaokejia.com/",
186 196
         };
187 197
     },
188 198
     filters: {
@@ -205,10 +215,7 @@ export default {
205 215
             let quarter = month * 3;
206 216
             let year = quarter * 12;
207 217
             if (mius < 0) {
208
-                return `结束时间:${plugin.dateFormat(
209
-                    dateStr,
210
-                    "MM-dd hh:mm"
211
-                )}`;
218
+                return `结束时间:${plugin.dateFormat(dateStr, "MM-dd hh:mm")}`;
212 219
             } else if (mius < minute) {
213 220
                 return `距结束还有${Math.floor(mius / 1000)}秒`;
214 221
             } else if (mius < hour) {
@@ -218,10 +225,7 @@ export default {
218 225
             } else if (mius < month) {
219 226
                 return `距结束还有${Math.floor(mius / day)}天`;
220 227
             } else if (mius < quarter) {
221
-                return `结束时间:${plugin.dateFormat(
222
-                    dateStr,
223
-                    "MM-dd hh:mm"
224
-                )}`;
228
+                return `结束时间:${plugin.dateFormat(dateStr, "MM-dd hh:mm")}`;
225 229
             }
226 230
         },
227 231
     },
@@ -393,7 +397,32 @@ export default {
393 397
         },
394 398
 
395 399
         // 推送
396
-        pushGive(val) {},
400
+        pushGive(item,type) {
401
+            let sendData = {
402
+                pid: item.aid,
403
+                aid: item.aid,
404
+                // storeId: item.storeId,
405
+                platform:1000
406
+            };
407
+            if (type === "text") {
408
+                sendData.sendTxt = false;
409
+                sendData.sendVideo = false;
410
+                sendData.sendImg = 0;
411
+            } else {
412
+                // sendData.sendTxt = true;
413
+                // sendData.sendVideo = true;
414
+                // sendData.sendImg = 3;
415
+            }
416
+
417
+            this.api
418
+                .get(this.otherUrl + "Home/sendproduct", sendData, {
419
+                    pass: true,
420
+                })
421
+                .then((res) => {
422
+                    this.fn.showToast(res.message);
423
+                });
424
+        },
425
+
397 426
 
398 427
         // 分享
399 428
         shareApp(val) {
@@ -421,13 +450,16 @@ export default {
421 450
         },
422 451
 
423 452
         // 去详情
424
-        goDetail(val){
453
+        goDetail(val) {
454
+            this.$store.commit("common/update", {
455
+                activityData: val,
456
+            });
425 457
             this.router.push({
426
-                path:'/pages/youxuan/good',
427
-                query:{
428
-                    aid:val.aid
429
-                }
430
-            })
458
+                path: "/pages/youxuan/good",
459
+                query: {
460
+                    aid: val.aid,
461
+                },
462
+            });
431 463
         },
432 464
     },
433 465
 

+ 372 - 52
src/pages/youxuan/good.vue

@@ -37,7 +37,11 @@
37 37
                                             {{ activity.brandName }}
38 38
                                         </div>
39 39
                                         <div class="tags">
40
-                                            <span>263款</span>
40
+                                            <span
41
+                                                >{{
42
+                                                    item.onlineProductCount
43
+                                                }}款</span
44
+                                            >
41 45
                                             <span>正品保障</span>
42 46
                                             <span>包邮</span>
43 47
                                         </div>
@@ -46,7 +50,9 @@
46 50
                                         </div>
47 51
                                     </div>
48 52
                                 </div>
49
-                                <div class="des">发货:xxxxx</div>
53
+                                <div class="des">
54
+                                    发货:{{ activity.deliveryDesc }}
55
+                                </div>
50 56
                                 <div class="des">
51 57
                                     服务:退换无忧,支持7天无理由退换
52 58
                                 </div>
@@ -73,56 +79,90 @@
73 79
                                     >
74 80
                                 </div>
75 81
                             </div>
82
+                            <ul class="menu">
83
+                                <li
84
+                                    class="menu__item"
85
+                                    :class="{
86
+                                        'menu__item--active': sort === 0,
87
+                                    }"
88
+                                    @click="setSort(0)"
89
+                                >
90
+                                    <div class="menu__text">综合</div>
91
+                                    <div
92
+                                        class="menu__sort"
93
+                                        :class="{
94
+                                            'menu__sort--up': sort === 0,
95
+                                            'menu__sort--down': sort === -100,
96
+                                        }"
97
+                                    ></div>
98
+                                </li>
99
+                                <li
100
+                                    class="menu__item"
101
+                                    :class="{
102
+                                        'menu__item--active': sort === 2,
103
+                                    }"
104
+                                    @click="setSort(2)"
105
+                                >
106
+                                    <div class="menu__text">销量</div>
107
+                                    <div
108
+                                        class="menu__sort"
109
+                                        :class="{
110
+                                            'menu__sort--up': sort === 2,
111
+                                            'menu__sort--down': sort === -2,
112
+                                        }"
113
+                                    ></div>
114
+                                </li>
115
+                                <li
116
+                                    class="menu__item"
117
+                                    :class="{
118
+                                        'menu__item--active': sort === 1,
119
+                                    }"
120
+                                    @click="setSort(1)"
121
+                                >
122
+                                    <div class="menu__text">价格</div>
123
+                                    <div
124
+                                        class="menu__sort"
125
+                                        :class="{
126
+                                            'menu__sort--up': sort === 1,
127
+                                            'menu__sort--down': sort === -1,
128
+                                        }"
129
+                                    ></div>
130
+                                </li>
131
+                            </ul>
76 132
                             <ul class="goods__list">
77 133
                                 <li
78 134
                                     class="goods__item"
79
-                                    v-for="(item, index) in goodsList"
135
+                                    v-for="(item, index) in goodList"
80 136
                                     :key="index"
81 137
                                 >
82
-                                    <div class="main">
138
+                                    <div class="main" @click="goDetail(item)">
83 139
                                         <my-image
84 140
                                             class="goods__img"
85
-                                            :src="item.mainImage"
86
-                                            @click="edit(item)"
141
+                                            :src="item.pictureUrls[0]"
87 142
                                         ></my-image>
88 143
                                         <div class="goods__info">
89 144
                                             <div class="goods__box">
90
-                                                <div
91
-                                                    class="goods__title"
92
-                                                    @click="edit(item)"
93
-                                                >
145
+                                                <div class="goods__title">
94 146
                                                     {{ item.name }}
95 147
                                                 </div>
96
-                                                <div
97
-                                                    class="goods__sale"
98
-                                                    @click="edit(item)"
99
-                                                >
100
-                                                    <span v-if="item.price">
148
+                                                <div class="goods__sale">
149
+                                                    <span v-if="item.agentFee">
101 150
                                                         价格:¥{{
102
-                                                            item.price / 100
151
+                                                            item.agentFee / 100
103 152
                                                         }}
104 153
                                                     </span>
105 154
 
106
-                                                    <span v-if="item.stock">
107
-                                                        库存:{{ item.stock }}
155
+                                                    <span
156
+                                                        v-if="
157
+                                                            item.totalInventory
158
+                                                        "
159
+                                                    >
160
+                                                        库存:{{
161
+                                                            item.totalInventory
162
+                                                        }}
108 163
                                                     </span>
109 164
                                                 </div>
110 165
                                             </div>
111
-                                            <!-- <div
112
-                                            class="goods__price"
113
-                                            @click="edit(item)"
114
-                                        >
115
-                                            <div class="goods__present">
116
-                                                价格:{{ "¥" + item.price / 100 }}
117
-                                            </div>
118
-                                            <div
119
-                                                class="goods__original"
120
-                                                v-if="item.stock !== 0"
121
-                                            >
122
-                                                库存:{{ "¥" + item.stock }}
123
-                                            </div>
124
-                                        </div> -->
125
-                                            <!-- 登录 -->
126 166
                                         </div>
127 167
                                     </div>
128 168
 
@@ -132,15 +172,13 @@
132 172
                                         </div>
133 173
                                         <div
134 174
                                             class="btn"
135
-                                            @click="sendProduct(item, 'text')"
175
+                                            @click="pushProduct(item)"
136 176
                                         >
137 177
                                             推荐
138 178
                                         </div>
139 179
                                         <div
140 180
                                             class="btn"
141
-                                            @click="
142
-                                                sendProduct(item, 'product')
143
-                                            "
181
+                                            @click="shareGood(item)"
144 182
                                         >
145 183
                                             分享
146 184
                                         </div>
@@ -188,9 +226,15 @@ export default {
188 226
     // 数据
189 227
     data() {
190 228
         return {
191
-
192 229
             aid: "",
193 230
             activity: {},
231
+            goodList: [],
232
+            goodPageIndex: 1,
233
+            sort: 0,
234
+            dataEnd: false,
235
+            shopId: "",
236
+            searchVal: "",
237
+            otherUrl: "https://bot.ixiaokejia.com/",
194 238
         };
195 239
     },
196 240
     filters: {
@@ -236,28 +280,304 @@ export default {
236 280
 
237 281
     onLoad(opts) {
238 282
         this.aid = opts.id;
239
-    },
240 283
 
241
-    async onShow() {
242
-        this.getActivity();
284
+        this.activity = this.$store.state.common.activityData;
285
+        // console.log(this.activity)
286
+        this.getGoods();
287
+        this.getShopInfo();
243 288
     },
244 289
 
245
-    onPullDownRefresh() {
246
-    },
290
+    async onShow() {},
291
+
292
+    onPullDownRefresh() {},
247 293
 
248 294
     // 函数
249 295
     methods: {
250
-        getActivity() {
296
+        // 获取店铺信息
297
+        getShopInfo() {
298
+            this.api
299
+                .get("/Shop/GetInfo", {}, { pass: true })
300
+                .then((infoRes) => {
301
+                    this.shopId = infoRes.data.id;
302
+                });
303
+        },
304
+        // 设置排序
305
+        setSort(val) {
306
+            const self = this;
307
+
308
+            if (val === this.sort) {
309
+                if (val === 0) {
310
+                    this.sort = -100;
311
+                } else if (val === -100) {
312
+                    this.sort = 0;
313
+                } else {
314
+                    this.sort = -this.sort;
315
+                }
316
+            } else {
317
+                this.sort = val;
318
+            }
319
+
320
+            this.getGoods();
321
+        },
322
+        getGoods() {
323
+            this.goodPageIndex = 1;
324
+            this.dataEnd = false;
325
+            let sendData = {
326
+                activityNo: this.activity.activityNo,
327
+                // keyword:'',
328
+                // asc:'',升降序,0-倒序,1-正序
329
+                // sortBy:''
330
+                pageIndex: this.goodPageIndex++,
331
+            };
332
+            if (this.searchVal) {
333
+                sendData.keyword = this.searchVal;
334
+            }
335
+            sendData = this.pushSort(sendData);
336
+
337
+            this.api.get("/Yx/GetProductList", sendData).then((res) => {
338
+                this.goodList = res.data;
339
+                if (!res.data.length) {
340
+                    this.dataEnd = true;
341
+                }
342
+            });
343
+        },
344
+        getMoreGoods() {
345
+            if (this.dataEnd) {
346
+                return;
347
+            }
348
+            let sendData = {
349
+                activityNo: this.activity.activityNo,
350
+                // keyword:'',
351
+                // asc:'',升降序,0-倒序,1-正序
352
+                // sortBy:''
353
+                pageIndex: this.goodPageIndex++,
354
+            };
355
+            if (this.searchVal) {
356
+                sendData.keyword = this.searchVal;
357
+            }
358
+            sendData = this.pushSort(sendData);
359
+
360
+            this.api.get("/Yx/GetProductList", sendData).then((res) => {
361
+                this.goodList = [...this.goodList, ...res.data];
362
+                if (!res.data.length) {
363
+                    this.dataEnd = true;
364
+                }
365
+            });
366
+        },
367
+        // 搜索
368
+        search() {
369
+            if (this.searchVal) {
370
+                this.getGoods();
371
+            }
372
+        },
373
+
374
+        closeSearchVal() {
375
+            this.searchVal = "";
376
+            this.getGoods();
377
+        },
378
+
379
+        pushSort(sendData) {
380
+            switch (this.sort) {
381
+                case 0:
382
+                    sendData.sortBy = 0;
383
+                    sendData.asc = 1;
384
+                    break;
385
+                case -100:
386
+                    sendData.sortBy = 0;
387
+                    sendData.asc = 0;
388
+                    break;
389
+                case 1:
390
+                    sendData.sortBy = 1;
391
+                    sendData.asc = 1;
392
+                    break;
393
+                case -1:
394
+                    sendData.sortBy = 1;
395
+                    sendData.asc = 0;
396
+                    break;
397
+                case 2:
398
+                    sendData.sortBy = 2;
399
+                    sendData.asc = 1;
400
+                    break;
401
+                case -2:
402
+                    sendData.sortBy = 2;
403
+                    sendData.asc = 0;
404
+                    break;
405
+            }
406
+            return sendData;
407
+        },
408
+
409
+        //  设置活动置顶
410
+        setActivityTop(val) {
411
+            if (val.top > 0) {
412
+                // 取消置顶
413
+                this.api
414
+                    .get("/Yx/CancelActivityTop", {
415
+                        aid: val.aid,
416
+                    })
417
+                    .then((res) => {
418
+                        if (res.success) {
419
+                            val.top = 0;
420
+                            this.$forceUpdate();
421
+                            this.fn.showToast("取消成功");
422
+                        } else {
423
+                            this.fn.showModal({
424
+                                title: "设置失败",
425
+                                content: res.message,
426
+                                showCancel: false,
427
+                            });
428
+                        }
429
+                    });
430
+            } else {
431
+                // 置顶
432
+                this.api
433
+                    .get("/Yx/SetActivityTop", {
434
+                        aid: val.aid,
435
+                    })
436
+                    .then((res) => {
437
+                        if (res.success) {
438
+                            val.top = 1;
439
+                            this.$forceUpdate();
440
+                            this.fn.showToast("置顶成功");
441
+                        } else {
442
+                            this.fn.showModal({
443
+                                title: "设置失败",
444
+                                content: res.message,
445
+                                showCancel: false,
446
+                            });
447
+                        }
448
+                    });
449
+            }
450
+        },
451
+
452
+        // 设置活动显示或隐藏
453
+        setActivityDisplay(val) {
454
+            let display = 0;
455
+            if (val.display === 1) {
456
+                // 隐藏
457
+                display = 0;
458
+            } else {
459
+                // 置顶
460
+                display = 1;
461
+            }
462
+            this.api
463
+                .get("/Yx/SetActivityDisplay", {
464
+                    aid: val.aid,
465
+                    display,
466
+                })
467
+                .then((res) => {
468
+                    if (res.success) {
469
+                        val.display = display;
470
+                        this.$forceUpdate();
471
+                        this.fn.showToast("设置成功");
472
+                    } else {
473
+                        this.fn.showModal({
474
+                            title: "设置失败",
475
+                            content: res.message,
476
+                            showCancel: false,
477
+                        });
478
+                    }
479
+                });
480
+        },
481
+
482
+        // 推送
483
+        pushGive(item,type) {
484
+            let sendData = {
485
+                pid: item.aid,
486
+                aid: item.aid,
487
+                // storeId: item.storeId,
488
+                platform:1000
489
+            };
490
+            if (type === "text") {
491
+                sendData.sendTxt = false;
492
+                sendData.sendVideo = false;
493
+                sendData.sendImg = 0;
494
+            } else {
495
+                // sendData.sendTxt = true;
496
+                // sendData.sendVideo = true;
497
+                // sendData.sendImg = 3;
498
+            }
499
+
500
+            this.api
501
+                .get(this.otherUrl + "Home/sendproduct", sendData, {
502
+                    pass: true,
503
+                })
504
+                .then((res) => {
505
+                    this.fn.showToast(res.message);
506
+                });
507
+        },
508
+
509
+        // 分享
510
+        shareApp(val) {
511
+            uni.navigateToMiniProgram({
512
+                appId: "wx7d16ba51271496b8",
513
+                path: `/pages/recommend/list?shopId=${this.shopId}&aid=${val.aid}`,
514
+                extraData: {
515
+                    shopId: this.shopId,
516
+                    aid: val.aid,
517
+                },
518
+            });
519
+        },
520
+
521
+        // 推荐商品
522
+        pushProduct(item,type) {
251 523
             let sendData = {
252
-                cateId: 1,
253
-                pageIndex: 1,
524
+                pid: item.id,
525
+                // storeId: item.storeId,
526
+                platform:1000
254 527
             };
255
-            this.api.get("/Yx/GetActivityList", sendData).then((res) => {
256
-                this.activity = res.data[0];
528
+            if (type === "text") {
529
+                sendData.sendTxt = false;
530
+                sendData.sendVideo = false;
531
+                sendData.sendImg = 0;
532
+            } else {
533
+                // sendData.sendTxt = true;
534
+                // sendData.sendVideo = true;
535
+                // sendData.sendImg = 3;
536
+            }
537
+
538
+            this.api
539
+                .get(this.otherUrl + "Home/sendproduct", sendData, {
540
+                    pass: true,
541
+                })
542
+                .then((res) => {
543
+                    this.fn.showToast(res.message);
544
+                });
545
+        },
546
+
547
+        // 分享商品
548
+        shareGood(val) {
549
+            uni.navigateToMiniProgram({
550
+                appId: "wx7d16ba51271496b8",
551
+                path: `/pages/recommend/detail?shopId=${this.shopId}&goodsId=${val.id}`,
552
+                extraData: {
553
+                    shopId: this.shopId,
554
+                    id: val.id,
555
+                },
257 556
             });
258 557
         },
259 558
 
559
+        // 更多
560
+        openMore(val) {
561
+            let arr = [];
562
+            if (val.top === 0) {
563
+                arr.push("置顶");
564
+            } else {
565
+                arr.push("取消置顶");
566
+            }
567
+            this.fn.showActionSheet(arr).then((res) => {
568
+                switch (arr[res]) {
569
+                    case "置顶":
570
+                        // this.edit(val);
571
+                        breathisk;
572
+                    case "取消置顶":
573
+                        // .remove(val, false);
574
+                        break;
575
+                }
576
+            });
577
+        },
260 578
 
579
+        // 去详情
580
+        goDetail(val) {},
261 581
     },
262 582
 
263 583
     // 数据计算
@@ -582,9 +902,9 @@ page {
582 902
         width: 100%;
583 903
         @include omits(2);
584 904
         max-height: px(88);
585
-        line-height: px(44);
905
+        line-height: px(48);
586 906
         margin-top: px(30);
587
-        font-size: px(36);
907
+        font-size: px(40);
588 908
         color: #333;
589 909
     }
590 910
 
@@ -592,10 +912,10 @@ page {
592 912
         // margin-top: px(30);
593 913
     }
594 914
     &__sale {
595
-        font-size: px(32);
915
+        font-size: px(38);
596 916
         line-height: px(40);
597 917
         color: #999;
598
-        margin-top: px(20);
918
+        margin-top: px(30);
599 919
         span ~ span {
600 920
             margin-left: px(20);
601 921
         }