|
@@ -9,13 +9,21 @@
|
|
|
<view class="tips">
|
|
|
购买VIP会员,即可畅读全部资源
|
|
|
</view>
|
|
|
- <view class="goodList">
|
|
|
+ <!-- <view class="goodList">
|
|
|
<view wx:for="{{products}}" wx:key="id" class="payBox {{item.payType=='YEAR'?'year':'month'}}"
|
|
|
bindtap="openDonutBuy" data-product="{{item}}">
|
|
|
<view class="name">{{item.title}}</view>
|
|
|
<view class="price">{{item.price/100}}元</view>
|
|
|
<view class="originPrice">原价:330元</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
+ <scroll-view class="goodsList" scroll-x="true" enhanced show-scrollbar="{{false}}">
|
|
|
+ <view wx:for="{{products}}" wx:key="id" class="payBox {{item.payType=='YEAR'?'year':'month'}}"
|
|
|
+ bindtap="openDonutBuy" data-product="{{item}}">
|
|
|
+ <view class="name">{{item.title}}</view>
|
|
|
+ <view class="price">{{item.price/100}}元</view>
|
|
|
+ <view class="originPrice">原价:{{item.originPrice/100}}元</view>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
</view>
|
|
|
</popUp>
|