You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
883 B
18 lines
883 B
2 years ago
|
<view class="audio">
|
||
|
<view class="audio-wrapper">
|
||
|
<view class="audio-btn" bind:tap="handleBtn">
|
||
|
<view class="sound-play {{!hasPlay && 'sound-play-stop'}}">
|
||
|
<view class="sound-play-item"></view>
|
||
|
<view class="sound-play-item"></view>
|
||
|
<view class="sound-play-item"></view>
|
||
|
<view class="sound-play-item"></view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<!-- <image src="/assets/images/topic/play.png" bind:tap="audioPlay" /> -->
|
||
|
<slider value="{{stepValue}}" min="0" max="{{totalMax}}" bindchange="slideChange" bindchanging="handleSlideMove" class="audio-slider" active-color="#E60000" block-color="#E60000" block-size="12" />
|
||
|
<view class="audio-time">{{totalTime}}</view>
|
||
|
</view>
|
||
|
<view class="audio-del">
|
||
|
<image wx:if="{{showDel}}" src="/assets/images/topic/del_record.png" bind:tap="handleAudioDel" />
|
||
|
</view>
|
||
|
</view>
|