Files
fangcheyun/miniprogram/components/GoEasyRecorder/goEasyRecorder.wxml
2021-04-08 11:46:50 +08:00

6 lines
297 B
Plaintext

<view class="goeasy-recorder">
<view bindtouchstart="startRecord" bindtouchend="stopRecord" class="record-msg-box">
{{recording ? '松开发送' : '按下录音'}}
</view>
<image wx:if="{{recording}}" class="record-icon" src="../../static/images/recordImage/loading.gif"></image>
</view>