Showing
6 changed files
with
15 additions
and
4 deletions
@@ -94,7 +94,8 @@ exports.special = (req, res, next) => { | @@ -94,7 +94,8 @@ exports.special = (req, res, next) => { | ||
94 | page: 'special' | 94 | page: 'special' |
95 | }, processPublicData(req, '星潮教室'), { | 95 | }, processPublicData(req, '星潮教室'), { |
96 | resources: result, | 96 | resources: result, |
97 | - headTab: pageHeadTab | 97 | + headTab: pageHeadTab, |
98 | + notIndex: true | ||
98 | })); | 99 | })); |
99 | }).catch(next); | 100 | }).catch(next); |
100 | }; | 101 | }; |
@@ -114,7 +115,8 @@ exports.collocation = (req, res) => { | @@ -114,7 +115,8 @@ exports.collocation = (req, res) => { | ||
114 | isStarDetailPage: true, | 115 | isStarDetailPage: true, |
115 | page: 'collocation' | 116 | page: 'collocation' |
116 | }, processPublicData(req, '星潮教室'), { | 117 | }, processPublicData(req, '星潮教室'), { |
117 | - headTab: pageHeadTab | 118 | + headTab: pageHeadTab, |
119 | + notIndex: true | ||
118 | })); | 120 | })); |
119 | }; | 121 | }; |
120 | 122 |
1 | -<ul class="head-tab"> | 1 | +<ul class="head-tab" {{#if notIndex}}style="position: fixed;"{{/if}}> |
2 | {{#each headTab}} | 2 | {{#each headTab}} |
3 | <li {{#if cur}} class="cur" {{/if}} ><a href="{{ url }}" data-bp-id="guang_tab_{{name}}_false">{{ name }}</a></li> | 3 | <li {{#if cur}} class="cur" {{/if}} ><a href="{{ url }}" data-bp-id="guang_tab_{{name}}_false">{{ name }}</a></li> |
4 | {{/each}} | 4 | {{/each}} |
@@ -3,6 +3,7 @@ | @@ -3,6 +3,7 @@ | ||
3 | .detail-list { | 3 | .detail-list { |
4 | width: 100%; | 4 | width: 100%; |
5 | float: left; | 5 | float: left; |
6 | + padding-top: 88px; | ||
6 | 7 | ||
7 | li { | 8 | li { |
8 | float: left; | 9 | float: left; |
@@ -33,6 +34,7 @@ | @@ -33,6 +34,7 @@ | ||
33 | line-height: 48px; | 34 | line-height: 48px; |
34 | color: #fff; | 35 | color: #fff; |
35 | width: 100%; | 36 | width: 100%; |
37 | + word-wrap: break-word; | ||
36 | } | 38 | } |
37 | } | 39 | } |
38 | } | 40 | } |
1 | .sale-page { | 1 | .sale-page { |
2 | overflow: hidden; | 2 | overflow: hidden; |
3 | - background-color: #fff; | 3 | + background-color: #f0f0f0; |
4 | 4 | ||
5 | #thumb-row { | 5 | #thumb-row { |
6 | overflow: hidden; | 6 | overflow: hidden; |
@@ -23,6 +23,11 @@ | @@ -23,6 +23,11 @@ | ||
23 | border-radius: 20px; | 23 | border-radius: 20px; |
24 | } | 24 | } |
25 | } | 25 | } |
26 | + | ||
27 | + .list-nav, | ||
28 | + .goods-container { | ||
29 | + background: #fff; | ||
30 | + } | ||
26 | } | 31 | } |
27 | 32 | ||
28 | .sale-vip-page { | 33 | .sale-vip-page { |
-
Please register or login to post a comment