30 lines
1.4 KiB
Plaintext
30 lines
1.4 KiB
Plaintext
<privacy-popup id="privacy-popup-index"></privacy-popup>
|
|
<view class="container">
|
|
<view class="read" wx:if="{{!completed}}">
|
|
<view class="progress"> 当前进度: {{currentIndex+1}} / {{xitiList.length}} </view>
|
|
<view class="word-step">
|
|
<view class="fill-wrap"> {{xiti.stem}} </view>
|
|
</view>
|
|
<view class="select">
|
|
<view bindtap="checkWord" class="select-item" data-item="{{item}}" style="color: {{xiti.selectAnswer==item.id&&item.answer?'green':xiti.selectAnswer==item.id&&!item.answer?'red':''}}" wx:for="{{xiti.poetryQuestionOptionList}}" wx:key="id"> {{index+1}}. {{item.optionContent}} </view>
|
|
</view>
|
|
</view>
|
|
<view class="score" wx:else>
|
|
<view class="score-text">
|
|
<view style="display: flex; margin-top:30rpx;margin-bottom:60rpx; justify-content: center;"> 真棒,你已经完成了练习 </view>
|
|
<view>
|
|
<image mode="aspectFit" src="/img/complete.png"></image>
|
|
</view>
|
|
</view>
|
|
<view class="score-control">
|
|
<view class="score-control_panel">
|
|
<view class="btn-prev">
|
|
<van-button plain bind:click="returnHome" icon="arrow-left" size="large" type="info">返回目录 </van-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<van-notify id="van-notify"></van-notify>
|
|
<van-toast id="van-toast"></van-toast>
|