MemorizingWords.wxml 3.0 KB
<!--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>