Showing
3 changed files
with
9 additions
and
7 deletions
@@ -253,8 +253,10 @@ | @@ -253,8 +253,10 @@ | ||
253 | this.$set('cateNavLeftData', this.category); | 253 | this.$set('cateNavLeftData', this.category); |
254 | this.$set('cateNavRightData', this.cateNavLeftData ? this.cateNavLeftData[0].sub : []); | 254 | this.$set('cateNavRightData', this.cateNavLeftData ? this.cateNavLeftData[0].sub : []); |
255 | 255 | ||
256 | + let allSorts = this.cateNavLeftData[0].sub ? this.cateNavLeftData[0].sub.map(sort=>sort.relationParameter.sort).join(',') : ''; | ||
257 | + | ||
256 | this.$set('rightAll', this.cateNavLeftData ? { | 258 | this.$set('rightAll', this.cateNavLeftData ? { |
257 | - sortId: this.cateNavLeftData[0].sub.map(sort=>sort.relationParameter.sort).join(','), | 259 | + sortId: allSorts, |
258 | categoryName: this.cateNavLeftData[0].categoryName | 260 | categoryName: this.cateNavLeftData[0].categoryName |
259 | } : {}); | 261 | } : {}); |
260 | } | 262 | } |
@@ -36,7 +36,7 @@ | @@ -36,7 +36,7 @@ | ||
36 | right: 0; | 36 | right: 0; |
37 | left: 0; | 37 | left: 0; |
38 | z-index: 210; | 38 | z-index: 210; |
39 | - padding: 10px 30px; | 39 | + padding: 20px 30px 10px; |
40 | height: 70px; | 40 | height: 70px; |
41 | max-width: 750px; | 41 | max-width: 750px; |
42 | margin-left: auto; | 42 | margin-left: auto; |
@@ -72,16 +72,16 @@ | @@ -72,16 +72,16 @@ | ||
72 | } | 72 | } |
73 | 73 | ||
74 | .header-gap { | 74 | .header-gap { |
75 | - height: 90px; | 75 | + height: 100px; |
76 | background-color: transparent; | 76 | background-color: transparent; |
77 | } | 77 | } |
78 | 78 | ||
79 | .app.ios { | 79 | .app.ios { |
80 | .header { | 80 | .header { |
81 | - padding-top: 50px; | 81 | + padding-top: 60px; |
82 | } | 82 | } |
83 | .header-gap { | 83 | .header-gap { |
84 | - height: calc(70 + 50 + 10)px; | 84 | + height: calc(70 + 60 + 10)px; |
85 | } | 85 | } |
86 | } | 86 | } |
87 | </style> | 87 | </style> |
@@ -11,7 +11,7 @@ | @@ -11,7 +11,7 @@ | ||
11 | 11 | ||
12 | <style> | 12 | <style> |
13 | .top-box { | 13 | .top-box { |
14 | - .header { | 14 | + &.header-wrap { |
15 | background-color: transparent; | 15 | background-color: transparent; |
16 | color: #fff; | 16 | color: #fff; |
17 | } | 17 | } |
@@ -22,7 +22,7 @@ | @@ -22,7 +22,7 @@ | ||
22 | } | 22 | } |
23 | 23 | ||
24 | .top-change { | 24 | .top-change { |
25 | - .header { | 25 | + &.header-wrap { |
26 | background-color: #fff; | 26 | background-color: #fff; |
27 | color: #000; | 27 | color: #000; |
28 | } | 28 | } |
-
Please register or login to post a comment