123456789101112131415161718192021222324252627282930313233343536 |
- <view class="page">
- <swiper
- style="height:150px"
- class="swiper-banner"
- indicator-dots="true"
- autoplay="true"
- interval="2000"
- circular="true"
- >
- <block>
- <swiper-item class="swiper-view" a:for="{{banner}}">
- <image class="swiper-view" src="{{item}}"></image>
- </swiper-item>
- </block>
- </swiper>
- <view class="product-list">
- <view class="product-view" a:for="{{beer_list}}" onTap="toTaobao">
- <image mode="scaleToFill" src="{{item.img}}" />
- <text>{{item.name}}</text>
- <text>{{item.msg}}</text>
- <view class="product-price">
- <text style="font-size: 26rpx;margin-right:10rpx;">¥</text>
- <text style="font-size: 36rpx;">{{item.price}}</text>
- <text>¥{{item.original_p}}</text>
- </view>
- </view>
- </view>
- <view class="slogn">
- — TOKTOK·精酿到家·生啤更好喝 -
- </view>
- </view>
|