<template> <!-- 音频播放器组件 --> <view v-if='url' class='flex justify-between a-center audio j-sb'> <view class="d-flex"> <view :class="status ? 'timeCheck' : ''" class="font" v-if="duration.toFixed(0) > 0">{{duration.toFixed(0)}}</view> <view class='' @click='start(audioId)'> <image :src='startPic' class='icon' v-show='!status'></image> <image :src='endPic' class='icon' v-show='status'></image> </view> <!-- <view class='flex-1'> <slider @change='changeAudio' :activeColor='activeColor' :min='0' :max='duration.toFixed(0)' :value='currentTime.toFixed(0)' :step='0.1'></slider> </view> --> <!-- <view>{{getTime(Math.round(currentTime))}}</view> --> </view> <view class="d-flex" v-if="isDel"> <view>{{getTime(Math.round(currentTime))}}</view> <view @click="handleIconDel"> <u-icon name="close-circle-fill" color="#D9001B" size="32"></u-icon> </view> </view> </view> </template> <script> export default { data() { return { context: null, currentTime: 0, duration: 0, status: false } }, props: { url: String, activeColor: { type: String, default: '#0E7EFC' }, startPic: { type: String, default: '../../static/stopStatus.png' }, endPic: { type: String, default: '../../static/startStatus.png' }, audioId: [String, Number], isDel:{ type:Boolean, default: true } }, created() { this.context = uni.createInnerAudioContext(); this.context.src = this.url; this.onTimeUpdate(); this.onCanplay(); this.onEnded(); uni.$on('stop', (id) => { if (id && id != this.audioId) { this.context.stop(); this.status = false; } else if (!id) { this.context.stop(); this.status = false; } }) }, methods: { handleIconDel() { this.$emit('delete') }, start(id) { //点击播放 let audioId = id; if (this.status) { this.context.pause(); this.status = !this.status; } else { uni.$emit('stop', id) this.context.play() this.status = !this.status; } }, onCanplay() { //进入可播放状态 this.context.onCanplay(() => { this.context.duration; setTimeout(() => { this.duration = this.context.duration; }, 1000) }) }, onTimeUpdate() { //音频播放进度 this.context.onTimeUpdate(() => { if (!Number.isFinite(this.context.duration)) { // this.duration = this.context.currentTime + 10; this.duration = this.context.currentTime; this.currentTime = this.context.currentTime; } else { this.duration = this.context.duration; this.currentTime = this.context.currentTime; } }) }, onEnded() { //播放结束 this.context.onEnded(() => { this.status = false; this.currentTime = 0; }) }, changeAudio(e) { let paused = this.context.paused; this.context.pause(); this.context.seek(e.detail.value) if (!paused) { this.context.play(); } }, getTime(time) { let m = parseInt(time / 60); let s = time % 60; return this.towNum(m) + ':' + this.towNum(s); }, towNum(num) { if (num >= 10) { return num; } else { return '0' + num; } } } } </script> <style> .audio { background: #F4F4F4; height: 68rpx; padding: 0 20rpx; font-size: 24rpx; } .timeCheck{ color:#2C66FF ; } .icon { width: 28rpx; height: 28rpx; } .flex { display: flex; flex-direction: row; } .justify-between { justify-content: between; } .align-center { align-items: center; } .flex-1 { flex: 1; } .ml-3 { margin-left: 30rpx; } .mr-3 { margin-right: 30rpx; } </style>