|
@@ -34,7 +34,7 @@
|
|
|
</view>
|
|
|
<view class="wH-right" wx:elif="{{videoType=='pk'}}">
|
|
|
<view class="pkNum">
|
|
|
- {{videoInfoCopy.userRead.score?videoInfoCopy.userRead.score+'分':''}}
|
|
|
+ {{videoInfoCopy.userRead.score>=0?videoInfoCopy.userRead.score+'分':''}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -64,19 +64,24 @@
|
|
|
<!-- 音频 -->
|
|
|
<view class="workContent" wx:else>
|
|
|
<view class="audioBox" bindtap="audioPlay">
|
|
|
- <image src="/static/readingNow.gif" class="readingTips" wx:if="{{videoInfoCopy.userRead.id==currentId}}" />
|
|
|
<image src=" {{videoInfoCopy.userReadExtend.backgroundVirtualImg}}" class="audioBg" mode="aspectFill" />
|
|
|
+ <view class="titleBox">
|
|
|
+ {{videoInfoCopy.userRead.title}}
|
|
|
+ </view>
|
|
|
<view class="audioPlay">
|
|
|
<image src="/static/audioBg.png" class="audioPlayBg {{videoInfoCopy.userRead.id==currentId?'circle':''}}" />
|
|
|
<image src="/static/zhen.png" class="audioPlayZhen" />
|
|
|
<image src="{{videoInfoCopy.userRead.coverImg}}"
|
|
|
class="cover {{videoInfoCopy.userRead.id==currentId?'circle':''}}" />
|
|
|
</view>
|
|
|
- <view class="titleBox">
|
|
|
- <view class="textOver" wx:for="{{videoInfoCopy.userRead.title}}" wx:key="index">
|
|
|
- {{item}}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
+ <view class="progressBar">
|
|
|
+ <image src="{{videoInfoCopy.userRead.id==currentId?'/static/aStop.png':'/static/aPlay.png'}}"
|
|
|
+ class="audioSwitch" />
|
|
|
+ <view class="time">00:00</view>
|
|
|
+ <slider class="slider" value="{{sliderValue}}" catchtap="false" catchchange="slider" block-size='12'
|
|
|
+ backgroundColor='#ffffff50' selected-color="#ffffff" />
|
|
|
+ <view class="time">00:00</view>
|
|
|
+ </view>0
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="workFooter" wx:if="{{videoInfo.userRead.status!='CHECK'}}">
|