You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
<!--pages/index/index.wxml-->
|
|
<view class="content">
|
|
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
|
|
<block wx:for="{{imgUrls}}">
|
|
<swiper-item>
|
|
<image src="{{item.imgUrl}}" class="slide-image" mode='widthFill' />
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
<view class='menu'>
|
|
<view class='list'>
|
|
<view wx:for-items="{{menu_list}}" wx:if="{{index < 4}}" class="view">
|
|
<button class='{{item.className}}'>{{item.name}}</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:for-items="{{activityList}}">
|
|
<view class='activity_list_view' bindtap='loading' data-item='{{item.goodsNo}}'>
|
|
<image src='{{item.showUrl}}' class='image'></image>
|
|
<!-- <text class="num">20人团</text> -->
|
|
<text class="p1">{{item.activityName}}</text>
|
|
<view class="p3">
|
|
<view class='p2'>¥</view>{{item.participantPrice / 100}}
|
|
<text class="del">原价:{{item.originalPrice / 100}}</text>
|
|
</view>
|
|
<button class='openBtn' form-type="submit">去开团</button>
|
|
</view>
|
|
</view>
|
|
</view>
|