index.vue 553 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. <button @tap="startRecord">开始录音</button>
  4. <button @tap="endRecord">停止录音</button>
  5. <button @tap="playVoice">播放录音</button>
  6. <button @tap="uploadvoice">上传文件</button>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. text: 'uni-app',
  14. voicePath: ''
  15. }
  16. },
  17. onLoad() {
  18. },
  19. methods: {
  20. startRecord(){
  21. }
  22. }
  23. }
  24. </script>
  25. <style>
  26. </style>