MemorizingWords.wxml
3.0 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!--pages/MemorizingWords/MemorizingWords.wxml-->
<view class='title'>背单词</view>
<view class='content_item' wx:if='{{page==0}}'>
<swiper class='swiper_box' next-margin='{{next_margin}}'previous-margin='{{previous_margin}}' circular='{{circular}}' current='{{swiper_index}}'>
<block wx:for='{{wordspackage}}' wx:key='' >
<swiper-item class='swiper_item' id='{{item.id}}' bindtap='wordsPackgeDetail'>
<view class='sub_title'>GMAT</view>
<view class='title_info'>{{item.name}}</view>
<view class='sub_title_info'>{{item.short_content}}</view>
<view class='progress_box' >
<view class='progress_num'>{{item.jindu}}</view>
<view class='progress_img' style='left:{{item.jindu}}'>
<image src='/images/person.png'></image>
</view>
<view class='progress_bar'>
<view class='progress_ing' style='width:{{item.jindu}}'></view>
</view>
</view>
</swiper-item>
</block>
</swiper>
</view>
<view class='content_box'>
<block wx:if='{{page==1}}'>
<view class='content_item'>
<view class='serack_box' bindtap='searchPage'>
<view class='iconfont icon-sousuo'></view>
<view class='search_input'>
<input placeholder='请输入要搜索的单词' placeholder-class='input_color' disabled></input>
</view>
</view>
<view class='content_progress'>
<view class='label'>已坚持{{reciteInfo.jianchi_days}}天</view>
<view class='days'>
<image src='/images/bg2.gif'>
<view class='image_txt'>
<text class='day_num'>{{reciteInfo.days}}</text>
<text class='dau_unit'>天</text>
</view>
</image>
</view>
<view class='plan' bindtap='editPlan'>改计划</view>
<view class='plan_box'>
<view class='plan_item'>
<view class=''>
<text class='plan_num'>{{reciteInfo.everyday_words}}</text> 个</view>
<view>今天需背单词</view>
</view>
<view class='line'>|</view>
<view class='plan_item'>
<view>
<text class='plan_num'>{{reciteInfo.finish}}</text> 个</view>
<view>累计已背</view>
</view>
</view>
<view class='words_type' bindtap='editwordspage'>
<view class='iconfont icon-bianji'></view>
<view>GMAT-{{reciteInfo.package_name}}</view>
</view>
<view class='progress_num2'>{{reciteInfo.jindu}}</view>
<view class='progress_img img2' style='left:{{reciteInfo.jindu}}'>
<image src='/images/person.png'></image>
</view>
<view class='progress_bar bar2'>
<view class='progress_ing ing2' style='width:{{reciteInfo.jindu}}'></view>
</view>
</view>
</view>
<view class='bottom_btn'>
<view class='btn1' bindtap='startWords'>开始背单词</view>
<view class='btn2' bindtap='review'>复习</view>
<view class='btn3' bindtap='wordReport'>单词报告</view>
</view>
</block>
</view>