myCard.wxml
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!--pages/myCard/myCard.wxml-->
<block>
<view class='banner_box'>
<swiper class='swiper_box' wx:key='' interval='2000' duration='500' current='{{swipercurrent}}' bindchange='swiperCharge'>
<swiper-item class="banner_img" wx:for='{{imgsUrl}}' wx:key=''>
<image src='{{item}}'></image>
</swiper-item>
</swiper>
<view class='indicator_dots'>
<block wx:for='{{imgsUrl}}' wx:key=''>
<view class="dot {{ index == swipercurrent ? 'dot_active':''}}"></view>
</block>
</view>
</view>
<view class='content_box'>
<view class='item_list' bindtap='record'>
<view class='list_title'>预约记录</view>
</view>
<view class='item_list' bindtap='buyCard'>
<view class='list_title'>立即购买/续费</view>
</view>
<view class='item_list' bindtap='groupBuy'>
<view class='list_title'>团购畅玩卡</view>
</view>
</view>
</block>
<!-- <block>
<view class='banner_box'>
<swiper class='swiper_box' wx:key='' interval='2000' duration='500' current='{{swipercurrent}}' bindchange='swiperCharge'>
<swiper-item class="banner_img" wx:for='{{imgsUrl}}' wx:key=''>
<image src='{{item}}'></image>
</swiper-item>
</swiper>
<view class='indicator_dots'>
<block wx:for='{{imgsUrl}}' wx:key=''>
<view class="dot {{ index == swipercurrent ? 'dot_active':''}}"></view>
</block>
</view>
</view>
<view class='content_box'>
<view class='item_list'>
<view class='list_title'>立即购买</view>
</view>
<view class='item_list'>
<view class='list_title'>团购畅玩卡</view>
</view>
</view>
</block> -->