index.wxml 600 B

1234567891011
  1. <!--pages/main/component/Player/index.wxml-->
  2. <!--pages/index/components/player/AudioPlayer.wxml-->
  3. <view class="player-container" bindtap='playAction'>
  4. <view class="play-btn">
  5. <image mode="aspectFit" src="/assets/icon-state-{{isPlay ? 'play' : 'stop'}}.png" style='height: 14px;width: 14px;'></image>
  6. </view>
  7. <progress percent="{{progress}}" stroke-width="8" border-radius="4" backgroundColor="rgba(227,227,230,1)" activeColor="rgba(71,179,96,1)" border-radius="6" />
  8. <view class='timer'>{{formatCurrent}}/{{formatDuration}}</view>
  9. <view class="tips">点击试听录音</view>
  10. </view>