index.wxml
1.3 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
<!-- 轮播图 -->
<view class="top">
<swiper class="swiper" autoplay="true" interval="3000" circular="true" indicator-dots="true" indicator-color="white">
<swiper-item wx:for="{{lunbo}}" wx:key='key'>
<image src="{{item.image}}"></image>
</swiper-item>
</swiper>
</view>
<!-- 打卡领积分 -->
<view class="box">
<text class="title">您已坚持打卡{{clockData.clock_number}}天</text>
<view class="box-z">
<view class="box-0">
<view class="box-1">{{token ? clockData.reading : 0}}<text>分</text></view>
<view class="box-2">阅读时长</view>
</view>
<view class="box-0">
<view class="box-1">{{token ? clockData.readwords : 0}}<text>个</text></view>
<view class="box-2">阅读单词</view>
</view>
<view class="box-0">
<view class="box-1">{{token ? clockData.readbook : 0}}<text>本</text></view>
<view class="box-2">阅读英语书</view>
</view>
</view>
<view class="box-end" bindtap="bindRask">打卡领积分</view>
</view>
<!-- 今日任务 -->
<view class="line" bindtap="bindRask">
<view>
<image src="/img/ic_mess@2x.png"></image>
</view>
<view>今日任务</view>
<view>
<image src="/img/ic_arrow@2x.png"></image>
</view>
</view>
<!--登录 -->
<login show="{{login}}" bindmyevent="myevent"></login>