test.vue 521 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view>
  3. <view @click="click">播放声音</view>
  4. </view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. methods: {
  14. click:function(){
  15. console.log('adsafa')
  16. this.audioContext = uni.createInnerAudioContext();
  17. this.audioContext.src = '../../static/y1809.mp3';
  18. console.log(this.audioContext.src)
  19. // obeyMuteSwitch默认值为true
  20. // 在需要播放的地方,调用即可
  21. this.audioContext.play();
  22. }
  23. }
  24. }
  25. </script>
  26. <style>