Commit a3c4038748748a36b7602e2c3d8b3cb807b05666

Authored by zhiyangdu
1 parent f9ebb6a5

首页头部样式优化

src/pages/pointsMall/pointsMall.less
... ... @@ -18,9 +18,7 @@
18 18 z-index: 2;
19 19 }
20 20 .back-box{
21   - background-color: #FFF;
22   - position:fixed;
23   - z-index:1
  21 + background-color: transparent;
24 22 }
25 23 .main_box{
26 24 width: 100%;
... ...
src/pages/pointsMall/pointsMall.vue
... ... @@ -9,18 +9,17 @@
9 9 :callApps="$parent.callApps"
10 10 >
11 11 </call-app-box>
  12 + <!-- pl -->
  13 + <div class="pl" :class="{'is-open-app': $parent.isOpenApp.value, 'hide': $route.query.hideBack == true}"></div>
  14 + <div class="main_box">
12 15 <back-box
13 16 v-if="isCNLive.value"
14 17 :class="{'hide': $route.query.hideBack == true}"
15 18 class="back-box"
16 19 :style="'padding-top: ' + $parent.top.value + 'px'"
17 20 @back="back"
18   - :backs="backs"
19   - >
  21 + :backs="backs">
20 22 </back-box>
21   - <!-- pl -->
22   - <div class="pl" :class="{'is-cnlive': isCNLive.value, 'is-open-app': $parent.isOpenApp.value, 'hide': $route.query.hideBack == true}"></div>
23   - <div class="main_box">
24 23 <div class="top_main">
25 24 <!-- 头部 -->
26 25 <div class="top">
... ...