Merge branch 'release/4.8'
Showing
3 changed files
with
6 additions
and
4 deletions
@@ -60,7 +60,9 @@ let index = (req, res, next) => { | @@ -60,7 +60,9 @@ let index = (req, res, next) => { | ||
60 | return next(); | 60 | return next(); |
61 | } | 61 | } |
62 | 62 | ||
63 | - backUrl && res.cookie('saleRefer', backUrl); | 63 | + backUrl && res.cookie('saleRefer', backUrl, { |
64 | + domain: 'm.yohobuy.com' | ||
65 | + }); | ||
64 | backUrl = backUrl || req.cookies.saleRefer; | 66 | backUrl = backUrl || req.cookies.saleRefer; |
65 | 67 | ||
66 | let params = _processPublicData(req, 'SALE', 'sale', backUrl); | 68 | let params = _processPublicData(req, 'SALE', 'sale', backUrl); |
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | display: inline-block; | 7 | display: inline-block; |
8 | width: 275px; | 8 | width: 275px; |
9 | height: 160px; | 9 | height: 160px; |
10 | - border-radius: 8px; | 10 | + border-radius: 10px; |
11 | background-size: 100%; | 11 | background-size: 100%; |
12 | background-repeat: no-repeat; | 12 | background-repeat: no-repeat; |
13 | background-position: center; | 13 | background-position: center; |
@@ -24,12 +24,12 @@ | @@ -24,12 +24,12 @@ | ||
24 | 24 | ||
25 | .arrow { | 25 | .arrow { |
26 | position: absolute; | 26 | position: absolute; |
27 | - top: -16px; | 27 | + top: -14px; |
28 | right: 30px; | 28 | right: 30px; |
29 | width: 0; | 29 | width: 0; |
30 | height: 0; | 30 | height: 0; |
31 | border-style: solid; | 31 | border-style: solid; |
32 | - border-width: 0 10px 16px; | 32 | + border-width: 0 14px 16px; |
33 | border-color: transparent transparent #000; | 33 | border-color: transparent transparent #000; |
34 | } | 34 | } |
35 | 35 |
-
Please register or login to post a comment