日照项目的居民端小程序
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.

31 lines
1.3 KiB

<view class="sound-record">
<view class="sound-cancle" bind:tap="hancleCancle">取消</view>
<view class="sound-wrapper">
<view class="sound-time">{{recordingTime}}</view>
<view class="sound-operate">
<view class="sound-operate-del" bind:tap="handleRecordDel">
<image wx:if="{{isStart}}" src="/assets/images/topic/record_del.png" />
</view>
<view class="sound-operate-btn">
<view class="sound-circel">
<view wx:if="{{isStart}}" class="sound-circle-bd" bind:tap="handleRecord">
<view class="sound-play {{!hasStart && '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>
<view wx:else class="sound-circle-bd sound-circle-bg" bind:tap="handleOpenRecord"></view>
</view>
</view>
<view class="sound-operate-finish" bind:tap="recordStop">
<image wx:if="{{isStart}}" src="/assets/images/topic/record_fn.png" />
</view>
</view>
<view class="sound-tips">
<view >点击发布语音内容</view>
<view >限10分钟内</view>
</view>
</view>
</view>