|
@@ -1,3 +1,4 @@
|
|
|
+<!-- <StatusBar receiveData="{{statusbarobj}}" grade="{{grade}}" bindgradeTap="gradeTap" /> -->
|
|
|
<scroll-view class="readingPage" lower-threshold="{{}}" scroll-y="true" bindscrolltolower="scrollToLower" bindscrolltoupper="scrollToUpper">
|
|
|
<!-- <view class="videoSection" wx:if="{{!isIOS}}">
|
|
|
<image wx:if="{{!videoLoad}}" class="videoIcon" src="{{iconImg}}" />
|
|
@@ -37,8 +38,7 @@
|
|
|
</scroll-view>
|
|
|
<view class="read_num" wx:if="{{isVideoListShow && totalSize > 0}}">
|
|
|
<image class="read_num_icon" src='../../static/index/peoples.png' />
|
|
|
-
|
|
|
- <text >共有{{totalSize}}个作品</text>
|
|
|
+ <text>共有{{totalSize}}个作品</text>
|
|
|
</view>
|
|
|
<view class="score_section" wx:if="{{ifScoreShow}}">
|
|
|
<view class="title">测评报告</view>
|
|
@@ -46,25 +46,37 @@
|
|
|
<image class="star" wx:for="{{star}}" src="{{item? '../../static/index/star_test_colored.png': '../../static/index/star_test.png'}}" />
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>完成度:{{integrity}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>完成度:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{integrity}}/100</text>
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>正确率:{{accuracy}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>正确率:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{accuracy}}/100</text>
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>语速:{{fluency}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>语速:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{fluency}}/100</text>
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>语音语调:{{tone}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>语调:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{tone}}/100</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<VideoSwiper bindopenShare="openShare" wx:if="{{videoList && videoList.length > 0 && isVideoListShow}}" class="video-swiper" video-list="{{videoList}}" nextMargin="{{nextMargin}}" isSwiper="{{false}}" bindopenComment="openComment" bindheadTap="headTapHandler" bindgoToReading="goToReading" bindonPlay="onPlay"></VideoSwiper>
|
|
|
</scroll-view>
|
|
|
-<view class="comment_section" catchtap="commentTap" data-type="blank" wx:if="{{commentShow}}">
|
|
|
+<view class="comment_section" catchtouchmove="touchMove" catchtap="commentTap" data-type="blank" wx:if="{{commentShow}}">
|
|
|
<Comment data-type="list" commentId="{{commentId}}" />
|
|
|
</view>
|
|
|
<view class="score_dialog" wx:if="{{ifScoreDialogShow}}">
|
|
@@ -74,20 +86,32 @@
|
|
|
<image class="star" wx:for="{{star}}" src="{{item? '../../static/index/star_test_colored.png': '../../static/index/star_test.png'}}" />
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>完成度:{{integrity}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>完成度:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{integrity}}/100</text>
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>正确率:{{accuracy}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>正确率:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{accuracy}}/100</text>
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>语速:{{fluency}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>语速:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{fluency}}/100</text>
|
|
|
</view>
|
|
|
<view class="score_item">
|
|
|
- <text class="score_square"></text>
|
|
|
- <text>语音语调:{{tone}}/100</text>
|
|
|
+ <view class="score_item_left">
|
|
|
+ <text class="score_square"></text>
|
|
|
+ <text>语调:</text>
|
|
|
+ </view>
|
|
|
+ <text>{{tone}}/100</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="close" bindtap="closeScoreDialog">
|