Merge branch 'feature/vipLevel' into 'master'
Feature/vip level See merge request !4
Showing
3 changed files
with
15 additions
and
1 deletions
@@ -287,7 +287,7 @@ const component = { | @@ -287,7 +287,7 @@ const component = { | ||
287 | }; | 287 | }; |
288 | 288 | ||
289 | let param = { | 289 | let param = { |
290 | - uid: req.user.uid || 20000266, | 290 | + uid: req.user.uid, |
291 | channel: req.cookies._Channel && channels[req.cookies._Channel] || 1 | 291 | channel: req.cookies._Channel && channels[req.cookies._Channel] || 1 |
292 | }; | 292 | }; |
293 | 293 |
@@ -59,11 +59,21 @@ | @@ -59,11 +59,21 @@ | ||
59 | background: #ccc; | 59 | background: #ccc; |
60 | opacity: 1; | 60 | opacity: 1; |
61 | vertical-align: middle; | 61 | vertical-align: middle; |
62 | + border-radius: 50%; | ||
62 | 63 | ||
63 | &.active { | 64 | &.active { |
64 | width: 12px; | 65 | width: 12px; |
65 | height: 12px; | 66 | height: 12px; |
66 | background: #fff; | 67 | background: #fff; |
68 | + border-radius: 50%; | ||
69 | + } | ||
70 | + } | ||
71 | + | ||
72 | + .swipe-indicator:nth-child(1) { | ||
73 | + width: 9px; | ||
74 | + | ||
75 | + &.active { | ||
76 | + width: 13px; | ||
67 | } | 77 | } |
68 | } | 78 | } |
69 | } | 79 | } |
-
Please register or login to post a comment