Commit 3798c3ff1820e9312e380bb64eb0ae9e26d28cb9

Authored by 后端研发-倪永富
1 parent 9d42975f

免费优惠券列表

packageA/pages/quan/quan.json
... ... @@ -3,6 +3,6 @@
3 3 "nodata": "/components/nodata/nodata",
4 4 "share_button": "/components/share/share"
5 5 },
6   - "navigationBarTitleText": "优惠券列表",
  6 + "navigationBarTitleText": "免费优惠券列表",
7 7 "enablePullDownRefresh": false
8 8 }
9 9 \ No newline at end of file
... ...
packageA/pages/quan/quan.wxml
... ... @@ -3,18 +3,17 @@
3 3 <!-- 列表 -->
4 4 <!-- <view class="list-container"> -->
5 5 <!-- 标题 -->
6   - <view class="subTab-title flex">
  6 + <!-- <view class="subTab-title flex">
7 7 <block wx:for="{{tab2}}">
8 8 <view class="subTab-titleItem {{currentIndex2 == index ? 'active':''}}" data-index="{{index}}" bindtap="clickTab2">{{item}}</view>
9 9 </block>
10   - </view>
  10 + </view> -->
11 11 <!-- 列表项 -->
12 12 <scroll-view
13 13 class="list"
14 14 scroll-y="true"
15 15 bindscrolltolower="refresh"
16   - scroll-anchoring
17   - refresher-enabled>
  16 + scroll-anchoring>
18 17  
19 18 <block wx:for="{{list}}">
20 19 <view class="coupons bg-red" bindtap="go_quan" data-index="{{index}}">
... ...
packageA/pages/quan/quan.wxss
... ... @@ -85,7 +85,8 @@ page {
85 85 }
86 86 .list {
87 87 box-sizing: border-box;
88   - height: calc(100% - 78rpx);
  88 + /* height: calc(100% - 78rpx); */
  89 + height: 100%;
89 90 background-color: #f2f2f2;
90 91 padding: 20rpx 20rpx 0 20rpx;
91 92 /* padding-bottom: 102rpx; */
... ...